@webwriter/quiz 1.0.4 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +6 -6
- package/custom.d.ts +175 -175
- package/dist/widgets/webwriter-choice-item.css +1 -1
- package/dist/widgets/webwriter-choice-item.js +1886 -802
- package/dist/widgets/webwriter-choice.css +1 -1
- package/dist/widgets/webwriter-choice.js +1943 -846
- package/dist/widgets/webwriter-cloze-gap.css +1 -1
- package/dist/widgets/webwriter-cloze-gap.js +1988 -902
- package/dist/widgets/webwriter-cloze.css +1 -1
- package/dist/widgets/webwriter-cloze.js +1833 -748
- package/dist/widgets/webwriter-mark.css +1 -1
- package/dist/widgets/webwriter-mark.js +1848 -762
- package/dist/widgets/webwriter-order-item.css +1 -1
- package/dist/widgets/webwriter-order-item.js +1884 -799
- package/dist/widgets/webwriter-order.css +1 -1
- package/dist/widgets/webwriter-order.js +1887 -2299
- package/dist/widgets/webwriter-pairing-item.css +1 -1
- package/dist/widgets/webwriter-pairing-item.js +1718 -614
- package/dist/widgets/webwriter-pairing.css +1 -1
- package/dist/widgets/webwriter-pairing.js +1873 -781
- package/dist/widgets/webwriter-quiz.css +1 -1
- package/dist/widgets/webwriter-quiz.js +2241 -1026
- package/dist/widgets/webwriter-speech.css +1 -1
- package/dist/widgets/webwriter-speech.js +2179 -961
- package/dist/widgets/webwriter-task-explainer.css +1 -1
- package/dist/widgets/webwriter-task-explainer.js +1704 -600
- package/dist/widgets/webwriter-task-hint.css +1 -1
- package/dist/widgets/webwriter-task-hint.js +1695 -591
- package/dist/widgets/webwriter-task-prompt.css +1 -1
- package/dist/widgets/webwriter-task-prompt.js +1670 -566
- package/dist/widgets/webwriter-task.css +1 -1
- package/dist/widgets/webwriter-task.js +2361 -1143
- package/dist/widgets/webwriter-text.css +1 -1
- package/dist/widgets/webwriter-text.js +1876 -770
- package/icon.svg +1 -0
- package/lit-localize.json +15 -0
- package/localization/bg.xlf +54 -0
- package/localization/cs.xlf +54 -0
- package/localization/da.xlf +54 -0
- package/localization/de.xlf +54 -0
- package/localization/el.xlf +54 -0
- package/localization/es.xlf +54 -0
- package/localization/et.xlf +54 -0
- package/localization/fi.xlf +54 -0
- package/localization/fr.xlf +54 -0
- package/localization/generated/bg.ts +25 -0
- package/localization/generated/cs.ts +25 -0
- package/localization/generated/da.ts +25 -0
- package/localization/generated/de.ts +25 -0
- package/localization/generated/el.ts +25 -0
- package/localization/generated/es.ts +25 -0
- package/localization/generated/et.ts +25 -0
- package/localization/generated/fi.ts +25 -0
- package/localization/generated/fr.ts +25 -0
- package/localization/generated/hu.ts +25 -0
- package/localization/generated/id.ts +25 -0
- package/localization/generated/index.js +3 -0
- package/localization/generated/it.ts +25 -0
- package/localization/generated/ja.ts +25 -0
- package/localization/generated/ko.ts +25 -0
- package/localization/generated/locale-codes.js +79 -0
- package/localization/generated/lt.ts +25 -0
- package/localization/generated/lv.ts +25 -0
- package/localization/generated/nb.ts +25 -0
- package/localization/generated/nl.ts +25 -0
- package/localization/generated/pl.ts +25 -0
- package/localization/generated/pt-BR.ts +25 -0
- package/localization/generated/pt-PT.ts +25 -0
- package/localization/generated/ro.ts +25 -0
- package/localization/generated/ru.ts +25 -0
- package/localization/generated/sk.ts +25 -0
- package/localization/generated/sl.ts +25 -0
- package/localization/generated/sv.ts +25 -0
- package/localization/generated/tr.ts +25 -0
- package/localization/generated/uk.ts +25 -0
- package/localization/generated/zh-hans.ts +25 -0
- package/localization/hu.xlf +54 -0
- package/localization/id.xlf +54 -0
- package/localization/it.xlf +54 -0
- package/localization/ja.xlf +54 -0
- package/localization/ko.xlf +54 -0
- package/localization/lt.xlf +54 -0
- package/localization/lv.xlf +54 -0
- package/localization/nb.xlf +54 -0
- package/localization/nl.xlf +54 -0
- package/localization/pl.xlf +54 -0
- package/localization/pt-BR.xlf +54 -0
- package/localization/pt-PT.xlf +54 -0
- package/localization/ro.xlf +54 -0
- package/localization/ru.xlf +54 -0
- package/localization/sk.xlf +54 -0
- package/localization/sl.xlf +54 -0
- package/localization/sv.xlf +54 -0
- package/localization/tr.xlf +54 -0
- package/localization/uk.xlf +54 -0
- package/localization/zh-hans.xlf +54 -0
- package/package.json +206 -198
- package/src/lib/combobox.ts +455 -455
- package/src/lib/highlighter-fill.svg +5 -5
- package/src/snippets/Beispiel-Choice.html +57 -0
- package/src/snippets/Beispiel-Mark.html +14 -0
- package/src/snippets/Beispiel-Order.html +52 -0
- package/src/snippets/Beispiel-Text.html +20 -0
- package/src/snippets/choice.html +7 -7
- package/src/snippets/cloze.html +3 -3
- package/src/snippets/mark.html +3 -3
- package/src/snippets/order.html +7 -7
- package/src/snippets/pairing.html +9 -9
- package/src/snippets/speech.html +3 -3
- package/src/snippets/text.html +3 -3
- package/src/snippets/wordsearch.html +3 -3
- package/src/widgets/webwriter-choice-item.ts +250 -250
- package/src/widgets/webwriter-choice.ts +314 -309
- package/src/widgets/webwriter-cloze-gap.ts +215 -216
- package/src/widgets/webwriter-cloze.ts +135 -135
- package/src/widgets/webwriter-mark.ts +431 -434
- package/src/widgets/webwriter-order-item.ts +437 -444
- package/src/widgets/webwriter-order.ts +284 -272
- package/src/widgets/webwriter-pairing-item.ts +160 -155
- package/src/widgets/webwriter-pairing.ts +192 -187
- package/src/widgets/webwriter-quiz.ts +281 -280
- package/src/widgets/webwriter-speech.ts +272 -267
- package/src/widgets/webwriter-task-explainer.ts +42 -37
- package/src/widgets/webwriter-task-hint.ts +22 -16
- package/src/widgets/webwriter-task-prompt.ts +23 -17
- package/src/widgets/webwriter-task.ts +546 -543
- package/src/widgets/webwriter-text.ts +135 -130
- package/tsconfig.json +6 -6
|
@@ -1,266 +1,1004 @@
|
|
|
1
1
|
var __create = Object.create;
|
|
2
2
|
var __defProp = Object.defineProperty;
|
|
3
3
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
5
|
var __knownSymbol = (name, symbol) => (symbol = Symbol[name]) ? symbol : Symbol.for("Symbol." + name);
|
|
5
|
-
var __typeError = (
|
|
6
|
-
throw TypeError(
|
|
6
|
+
var __typeError = (msg2) => {
|
|
7
|
+
throw TypeError(msg2);
|
|
7
8
|
};
|
|
8
9
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
9
10
|
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
11
|
+
var __glob = (map) => (path) => {
|
|
12
|
+
var fn = map[path];
|
|
13
|
+
if (fn) return fn();
|
|
14
|
+
throw new Error("Module not found in bundle: " + path);
|
|
15
|
+
};
|
|
16
|
+
var __esm = (fn, res) => function __init() {
|
|
17
|
+
return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
|
|
18
|
+
};
|
|
19
|
+
var __export = (target, all) => {
|
|
20
|
+
for (var name in all)
|
|
21
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
22
|
+
};
|
|
10
23
|
var __decoratorStart = (base) => [, , , __create(base?.[__knownSymbol("metadata")] ?? null)];
|
|
11
24
|
var __decoratorStrings = ["class", "method", "getter", "setter", "accessor", "field", "value", "get", "set"];
|
|
12
25
|
var __expectFn = (fn) => fn !== void 0 && typeof fn !== "function" ? __typeError("Function expected") : fn;
|
|
13
26
|
var __decoratorContext = (kind, name, done, metadata, fns) => ({ kind: __decoratorStrings[kind], name, metadata, addInitializer: (fn) => done._ ? __typeError("Already initialized") : fns.push(__expectFn(fn || null)) });
|
|
14
27
|
var __decoratorMetadata = (array, target) => __defNormalProp(target, __knownSymbol("metadata"), array[3]);
|
|
15
28
|
var __runInitializers = (array, flags, self, value) => {
|
|
16
|
-
for (var
|
|
29
|
+
for (var i8 = 0, fns = array[flags >> 1], n7 = fns && fns.length; i8 < n7; i8++) flags & 1 ? fns[i8].call(self) : value = fns[i8].call(self, value);
|
|
17
30
|
return value;
|
|
18
31
|
};
|
|
19
32
|
var __decorateElement = (array, flags, name, decorators, target, extra) => {
|
|
20
|
-
var fn, it, done, ctx, access, k3 = flags & 7,
|
|
21
|
-
var j3 = k3 > 3 ? array.length + 1 : k3 ?
|
|
33
|
+
var fn, it, done, ctx, access, k3 = flags & 7, s4 = !!(flags & 8), p4 = !!(flags & 16);
|
|
34
|
+
var j3 = k3 > 3 ? array.length + 1 : k3 ? s4 ? 1 : 2 : 0, key = __decoratorStrings[k3 + 5];
|
|
22
35
|
var initializers = k3 > 3 && (array[j3 - 1] = []), extraInitializers = array[j3] || (array[j3] = []);
|
|
23
|
-
var desc = k3 && (!
|
|
36
|
+
var desc = k3 && (!p4 && !s4 && (target = target.prototype), k3 < 5 && (k3 > 3 || !p4) && __getOwnPropDesc(k3 < 4 ? target : { get [name]() {
|
|
24
37
|
return __privateGet(this, extra);
|
|
25
38
|
}, set [name](x3) {
|
|
26
39
|
return __privateSet(this, extra, x3);
|
|
27
40
|
} }, name));
|
|
28
|
-
k3 ?
|
|
29
|
-
for (var
|
|
41
|
+
k3 ? p4 && k3 < 4 && __name(extra, (k3 > 2 ? "set " : k3 > 1 ? "get " : "") + name) : __name(target, name);
|
|
42
|
+
for (var i8 = decorators.length - 1; i8 >= 0; i8--) {
|
|
30
43
|
ctx = __decoratorContext(k3, name, done = {}, array[3], extraInitializers);
|
|
31
44
|
if (k3) {
|
|
32
|
-
ctx.static =
|
|
33
|
-
if (k3 ^ 3) access.get =
|
|
34
|
-
if (k3 > 2) access.set =
|
|
45
|
+
ctx.static = s4, ctx.private = p4, access = ctx.access = { has: p4 ? (x3) => __privateIn(target, x3) : (x3) => name in x3 };
|
|
46
|
+
if (k3 ^ 3) access.get = p4 ? (x3) => (k3 ^ 1 ? __privateGet : __privateMethod)(x3, target, k3 ^ 4 ? extra : desc.get) : (x3) => x3[name];
|
|
47
|
+
if (k3 > 2) access.set = p4 ? (x3, y4) => __privateSet(x3, target, y4, k3 ^ 4 ? extra : desc.set) : (x3, y4) => x3[name] = y4;
|
|
35
48
|
}
|
|
36
|
-
it = (0, decorators[
|
|
37
|
-
if (k3 ^ 4 || it === void 0) __expectFn(it) && (k3 > 4 ? initializers.unshift(it) : k3 ?
|
|
49
|
+
it = (0, decorators[i8])(k3 ? k3 < 4 ? p4 ? extra : desc[key] : k3 > 4 ? void 0 : { get: desc.get, set: desc.set } : target, ctx), done._ = 1;
|
|
50
|
+
if (k3 ^ 4 || it === void 0) __expectFn(it) && (k3 > 4 ? initializers.unshift(it) : k3 ? p4 ? extra = it : desc[key] = it : target = it);
|
|
38
51
|
else if (typeof it !== "object" || it === null) __typeError("Object expected");
|
|
39
52
|
else __expectFn(fn = it.get) && (desc.get = fn), __expectFn(fn = it.set) && (desc.set = fn), __expectFn(fn = it.init) && initializers.unshift(fn);
|
|
40
53
|
}
|
|
41
|
-
return k3 || __decoratorMetadata(array, target), desc && __defProp(target, name, desc),
|
|
54
|
+
return k3 || __decoratorMetadata(array, target), desc && __defProp(target, name, desc), p4 ? k3 ^ 4 ? extra : desc : target;
|
|
42
55
|
};
|
|
43
56
|
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
44
|
-
var __accessCheck = (obj, member,
|
|
57
|
+
var __accessCheck = (obj, member, msg2) => member.has(obj) || __typeError("Cannot " + msg2);
|
|
45
58
|
var __privateIn = (member, obj) => Object(obj) !== obj ? __typeError('Cannot use the "in" operator on this value') : member.has(obj);
|
|
46
59
|
var __privateGet = (obj, member, getter) => (__accessCheck(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
|
|
47
60
|
var __privateAdd = (obj, member, value) => member.has(obj) ? __typeError("Cannot add the same private member more than once") : member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
|
48
61
|
var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value);
|
|
49
62
|
var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "access private method"), method);
|
|
50
63
|
|
|
51
|
-
//
|
|
64
|
+
// localization/generated/bg.ts
|
|
65
|
+
var bg_exports = {};
|
|
66
|
+
__export(bg_exports, {
|
|
67
|
+
templates: () => templates2
|
|
68
|
+
});
|
|
69
|
+
var templates2;
|
|
70
|
+
var init_bg = __esm({
|
|
71
|
+
"localization/generated/bg.ts"() {
|
|
72
|
+
templates2 = {
|
|
73
|
+
"s159928724265eb05": `\u0414\u043E\u0431\u0430\u0432\u044F\u043D\u0435 \u043D\u0430 \u043E\u043F\u0446\u0438\u044F`,
|
|
74
|
+
"s1b23c41934894f30": `\u041E\u0431\u044F\u0441\u043D\u0435\u043D\u0438\u0435`,
|
|
75
|
+
"s255857544a9d5ec0": `\u041D\u0443\u043B\u0438\u0440\u0430\u043D\u0435 \u043D\u0430`,
|
|
76
|
+
"s4802e47fe2e95134": `\u041E\u043F\u0446\u0438\u044F`,
|
|
77
|
+
"s54393bfa280ea55b": `\u041F\u043E\u0434\u0441\u043A\u0430\u0437\u043A\u0430`,
|
|
78
|
+
"s7254ca27b16ae2d8": `\u0424\u0430\u043B\u0448\u0438\u0432`,
|
|
79
|
+
"s80dc9f56411917df": `\u0422\u0435\u043A\u0441\u0442 \u0437\u0430 \u043F\u043E\u0434\u0447\u0435\u0440\u0442\u0430\u0432\u0430\u043D\u0435`,
|
|
80
|
+
"s85ea99fb52be3385": `\u0418\u0441\u0442\u0438\u043D\u0441\u043A\u0438`,
|
|
81
|
+
"sb3d4f79d9d8b71e5": `\u041F\u043E\u0434\u0430\u0432\u0430\u043D\u0435 \u043D\u0430`,
|
|
82
|
+
"sc56e9323f076a11e": `\u0422\u0435\u043A\u0441\u0442 \u0437\u0430 \u0434\u043E\u0431\u0430\u0432\u044F\u043D\u0435 \u043D\u0430 \u043F\u0440\u043E\u043F\u0443\u0441\u043A\u0438`,
|
|
83
|
+
"scd1dd6ff53d0d01a": `\u041E\u043F\u0438\u0442\u0430\u0439\u0442\u0435 \u043E\u0442\u043D\u043E\u0432\u043E`,
|
|
84
|
+
"sd26e8d4eef55e341": `\u041F\u0440\u043E\u0432\u0435\u0440\u0435\u0442\u0435 \u043E\u0442\u0433\u043E\u0432\u043E\u0440\u0438\u0442\u0435 \u0441\u0438`
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
});
|
|
88
|
+
|
|
89
|
+
// localization/generated/cs.ts
|
|
90
|
+
var cs_exports = {};
|
|
91
|
+
__export(cs_exports, {
|
|
92
|
+
templates: () => templates3
|
|
93
|
+
});
|
|
94
|
+
var templates3;
|
|
95
|
+
var init_cs = __esm({
|
|
96
|
+
"localization/generated/cs.ts"() {
|
|
97
|
+
templates3 = {
|
|
98
|
+
"s159928724265eb05": `P\u0159idat mo\u017Enost`,
|
|
99
|
+
"s1b23c41934894f30": `Vysv\u011Btlen\xED`,
|
|
100
|
+
"s255857544a9d5ec0": `Obnoven\xED`,
|
|
101
|
+
"s4802e47fe2e95134": `Mo\u017Enost`,
|
|
102
|
+
"s54393bfa280ea55b": `Prompt`,
|
|
103
|
+
"s7254ca27b16ae2d8": `False`,
|
|
104
|
+
"s80dc9f56411917df": `Text ke zv\xFDrazn\u011Bn\xED`,
|
|
105
|
+
"s85ea99fb52be3385": `Pravda`,
|
|
106
|
+
"sb3d4f79d9d8b71e5": `Odeslat`,
|
|
107
|
+
"sc56e9323f076a11e": `Text, do kter\xE9ho se p\u0159id\xE1vaj\xED mezery`,
|
|
108
|
+
"scd1dd6ff53d0d01a": `Zkuste to znovu`,
|
|
109
|
+
"sd26e8d4eef55e341": `Zkontrolujte sv\xE9 odpov\u011Bdi`
|
|
110
|
+
};
|
|
111
|
+
}
|
|
112
|
+
});
|
|
113
|
+
|
|
114
|
+
// localization/generated/da.ts
|
|
115
|
+
var da_exports = {};
|
|
116
|
+
__export(da_exports, {
|
|
117
|
+
templates: () => templates4
|
|
118
|
+
});
|
|
119
|
+
var templates4;
|
|
120
|
+
var init_da = __esm({
|
|
121
|
+
"localization/generated/da.ts"() {
|
|
122
|
+
templates4 = {
|
|
123
|
+
"s159928724265eb05": `Tilf\xF8j mulighed`,
|
|
124
|
+
"s1b23c41934894f30": `Forklaring`,
|
|
125
|
+
"s255857544a9d5ec0": `Nulstil`,
|
|
126
|
+
"s4802e47fe2e95134": `Mulighed`,
|
|
127
|
+
"s54393bfa280ea55b": `Prompt`,
|
|
128
|
+
"s7254ca27b16ae2d8": `Falsk`,
|
|
129
|
+
"s80dc9f56411917df": `Tekst til at fremh\xE6ve`,
|
|
130
|
+
"s85ea99fb52be3385": `Sandt`,
|
|
131
|
+
"sb3d4f79d9d8b71e5": `Send ind`,
|
|
132
|
+
"sc56e9323f076a11e": `Tekst til at tilf\xF8je mellemrum til`,
|
|
133
|
+
"scd1dd6ff53d0d01a": `Pr\xF8v igen`,
|
|
134
|
+
"sd26e8d4eef55e341": `Tjek dine svar`
|
|
135
|
+
};
|
|
136
|
+
}
|
|
137
|
+
});
|
|
138
|
+
|
|
139
|
+
// localization/generated/de.ts
|
|
140
|
+
var de_exports = {};
|
|
141
|
+
__export(de_exports, {
|
|
142
|
+
templates: () => templates5
|
|
143
|
+
});
|
|
144
|
+
var templates5;
|
|
145
|
+
var init_de = __esm({
|
|
146
|
+
"localization/generated/de.ts"() {
|
|
147
|
+
templates5 = {
|
|
148
|
+
"s159928724265eb05": `Option hinzuf\xFCgen`,
|
|
149
|
+
"s1b23c41934894f30": `Erl\xE4uterung`,
|
|
150
|
+
"s255857544a9d5ec0": `Zur\xFCcksetzen`,
|
|
151
|
+
"s4802e47fe2e95134": `Option`,
|
|
152
|
+
"s54393bfa280ea55b": `Eingabeaufforderung`,
|
|
153
|
+
"s7254ca27b16ae2d8": `Falsch`,
|
|
154
|
+
"s80dc9f56411917df": `Hervorzuhebender Text`,
|
|
155
|
+
"s85ea99fb52be3385": `Wahr`,
|
|
156
|
+
"sb3d4f79d9d8b71e5": `Einreichen`,
|
|
157
|
+
"sc56e9323f076a11e": `Text zum Hinzuf\xFCgen von L\xFCcken`,
|
|
158
|
+
"scd1dd6ff53d0d01a": `Erneut versuchen`,
|
|
159
|
+
"sd26e8d4eef55e341": `\xDCberpr\xFCfen Sie Ihre Antworten`
|
|
160
|
+
};
|
|
161
|
+
}
|
|
162
|
+
});
|
|
163
|
+
|
|
164
|
+
// localization/generated/el.ts
|
|
165
|
+
var el_exports = {};
|
|
166
|
+
__export(el_exports, {
|
|
167
|
+
templates: () => templates6
|
|
168
|
+
});
|
|
169
|
+
var templates6;
|
|
170
|
+
var init_el = __esm({
|
|
171
|
+
"localization/generated/el.ts"() {
|
|
172
|
+
templates6 = {
|
|
173
|
+
"s159928724265eb05": `\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE\u03C2`,
|
|
174
|
+
"s1b23c41934894f30": `\u0395\u03C0\u03B5\u03BE\u03AE\u03B3\u03B7\u03C3\u03B7`,
|
|
175
|
+
"s255857544a9d5ec0": `\u0395\u03C0\u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC`,
|
|
176
|
+
"s4802e47fe2e95134": `\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE`,
|
|
177
|
+
"s54393bfa280ea55b": `\u03A0\u03C1\u03BF\u03C4\u03C1\u03BF\u03C0\u03AE`,
|
|
178
|
+
"s7254ca27b16ae2d8": `\u03A8\u03B5\u03C5\u03B4\u03AD\u03C2`,
|
|
179
|
+
"s80dc9f56411917df": `\u039A\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03B3\u03B9\u03B1 \u03B5\u03C0\u03B9\u03C3\u03AE\u03BC\u03B1\u03BD\u03C3\u03B7`,
|
|
180
|
+
"s85ea99fb52be3385": `\u0391\u03BB\u03AE\u03B8\u03B5\u03B9\u03B1`,
|
|
181
|
+
"sb3d4f79d9d8b71e5": `\u03A5\u03C0\u03BF\u03B2\u03BF\u03BB\u03AE`,
|
|
182
|
+
"sc56e9323f076a11e": `\u039A\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03C0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C3\u03B5\u03C4\u03B5 \u03BA\u03B5\u03BD\u03AC`,
|
|
183
|
+
"scd1dd6ff53d0d01a": `\u0394\u03BF\u03BA\u03B9\u03BC\u03AC\u03C3\u03C4\u03B5 \u03BE\u03B1\u03BD\u03AC`,
|
|
184
|
+
"sd26e8d4eef55e341": `\u0395\u03BB\u03AD\u03B3\u03BE\u03C4\u03B5 \u03C4\u03B9\u03C2 \u03B1\u03C0\u03B1\u03BD\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2 \u03C3\u03B1\u03C2`
|
|
185
|
+
};
|
|
186
|
+
}
|
|
187
|
+
});
|
|
188
|
+
|
|
189
|
+
// localization/generated/es.ts
|
|
190
|
+
var es_exports = {};
|
|
191
|
+
__export(es_exports, {
|
|
192
|
+
templates: () => templates7
|
|
193
|
+
});
|
|
194
|
+
var templates7;
|
|
195
|
+
var init_es = __esm({
|
|
196
|
+
"localization/generated/es.ts"() {
|
|
197
|
+
templates7 = {
|
|
198
|
+
"s159928724265eb05": `A\xF1adir opci\xF3n`,
|
|
199
|
+
"s1b23c41934894f30": `Explicaci\xF3n`,
|
|
200
|
+
"s255857544a9d5ec0": `Restablecer`,
|
|
201
|
+
"s4802e47fe2e95134": `Opci\xF3n`,
|
|
202
|
+
"s54393bfa280ea55b": `Pregunte a`,
|
|
203
|
+
"s7254ca27b16ae2d8": `Falso`,
|
|
204
|
+
"s80dc9f56411917df": `Texto a destacar`,
|
|
205
|
+
"s85ea99fb52be3385": `Verdadero`,
|
|
206
|
+
"sb3d4f79d9d8b71e5": `Enviar`,
|
|
207
|
+
"sc56e9323f076a11e": `Texto al que a\xF1adir huecos`,
|
|
208
|
+
"scd1dd6ff53d0d01a": `Int\xE9ntalo de nuevo`,
|
|
209
|
+
"sd26e8d4eef55e341": `Comprueba tus respuestas`
|
|
210
|
+
};
|
|
211
|
+
}
|
|
212
|
+
});
|
|
213
|
+
|
|
214
|
+
// localization/generated/et.ts
|
|
215
|
+
var et_exports = {};
|
|
216
|
+
__export(et_exports, {
|
|
217
|
+
templates: () => templates8
|
|
218
|
+
});
|
|
219
|
+
var templates8;
|
|
220
|
+
var init_et = __esm({
|
|
221
|
+
"localization/generated/et.ts"() {
|
|
222
|
+
templates8 = {
|
|
223
|
+
"s159928724265eb05": `Lisa v\xF5imalus`,
|
|
224
|
+
"s1b23c41934894f30": `Selgitus`,
|
|
225
|
+
"s255857544a9d5ec0": `Reset`,
|
|
226
|
+
"s4802e47fe2e95134": `Valik`,
|
|
227
|
+
"s54393bfa280ea55b": `Prompt`,
|
|
228
|
+
"s7254ca27b16ae2d8": `Vale`,
|
|
229
|
+
"s80dc9f56411917df": `Teksti esilet\xF5stmine`,
|
|
230
|
+
"s85ea99fb52be3385": `T\xF5si`,
|
|
231
|
+
"sb3d4f79d9d8b71e5": `Esita`,
|
|
232
|
+
"sc56e9323f076a11e": `Tekst, millele lisada l\xFCngad`,
|
|
233
|
+
"scd1dd6ff53d0d01a": `Proovi uuesti`,
|
|
234
|
+
"sd26e8d4eef55e341": `Kontrollige oma vastuseid`
|
|
235
|
+
};
|
|
236
|
+
}
|
|
237
|
+
});
|
|
238
|
+
|
|
239
|
+
// localization/generated/fi.ts
|
|
240
|
+
var fi_exports = {};
|
|
241
|
+
__export(fi_exports, {
|
|
242
|
+
templates: () => templates9
|
|
243
|
+
});
|
|
244
|
+
var templates9;
|
|
245
|
+
var init_fi = __esm({
|
|
246
|
+
"localization/generated/fi.ts"() {
|
|
247
|
+
templates9 = {
|
|
248
|
+
"s159928724265eb05": `Lis\xE4\xE4 vaihtoehto`,
|
|
249
|
+
"s1b23c41934894f30": `Selitys`,
|
|
250
|
+
"s255857544a9d5ec0": `Nollaa`,
|
|
251
|
+
"s4802e47fe2e95134": `Vaihtoehto`,
|
|
252
|
+
"s54393bfa280ea55b": `Kehotus`,
|
|
253
|
+
"s7254ca27b16ae2d8": `False`,
|
|
254
|
+
"s80dc9f56411917df": `Korostettava teksti`,
|
|
255
|
+
"s85ea99fb52be3385": `Totta`,
|
|
256
|
+
"sb3d4f79d9d8b71e5": `L\xE4het\xE4`,
|
|
257
|
+
"sc56e9323f076a11e": `Teksti, johon lis\xE4t\xE4\xE4n aukkoja`,
|
|
258
|
+
"scd1dd6ff53d0d01a": `Yrit\xE4 uudelleen`,
|
|
259
|
+
"sd26e8d4eef55e341": `Tarkista vastauksesi`
|
|
260
|
+
};
|
|
261
|
+
}
|
|
262
|
+
});
|
|
263
|
+
|
|
264
|
+
// localization/generated/fr.ts
|
|
265
|
+
var fr_exports = {};
|
|
266
|
+
__export(fr_exports, {
|
|
267
|
+
templates: () => templates10
|
|
268
|
+
});
|
|
269
|
+
var templates10;
|
|
270
|
+
var init_fr = __esm({
|
|
271
|
+
"localization/generated/fr.ts"() {
|
|
272
|
+
templates10 = {
|
|
273
|
+
"s159928724265eb05": `Ajouter une option`,
|
|
274
|
+
"s1b23c41934894f30": `Explication`,
|
|
275
|
+
"s255857544a9d5ec0": `Remise \xE0 z\xE9ro`,
|
|
276
|
+
"s4802e47fe2e95134": `Option`,
|
|
277
|
+
"s54393bfa280ea55b": `Prompt`,
|
|
278
|
+
"s7254ca27b16ae2d8": `Faux`,
|
|
279
|
+
"s80dc9f56411917df": `Texte \xE0 mettre en \xE9vidence`,
|
|
280
|
+
"s85ea99fb52be3385": `Vrai`,
|
|
281
|
+
"sb3d4f79d9d8b71e5": `Soumettre`,
|
|
282
|
+
"sc56e9323f076a11e": `Texte \xE0 ajouter aux lacunes`,
|
|
283
|
+
"scd1dd6ff53d0d01a": `R\xE9essayer`,
|
|
284
|
+
"sd26e8d4eef55e341": `V\xE9rifiez vos r\xE9ponses`
|
|
285
|
+
};
|
|
286
|
+
}
|
|
287
|
+
});
|
|
288
|
+
|
|
289
|
+
// localization/generated/hu.ts
|
|
290
|
+
var hu_exports = {};
|
|
291
|
+
__export(hu_exports, {
|
|
292
|
+
templates: () => templates11
|
|
293
|
+
});
|
|
294
|
+
var templates11;
|
|
295
|
+
var init_hu = __esm({
|
|
296
|
+
"localization/generated/hu.ts"() {
|
|
297
|
+
templates11 = {
|
|
298
|
+
"s159928724265eb05": `Opci\xF3 hozz\xE1ad\xE1sa`,
|
|
299
|
+
"s1b23c41934894f30": `Magyar\xE1zat`,
|
|
300
|
+
"s255857544a9d5ec0": `Reset`,
|
|
301
|
+
"s4802e47fe2e95134": `Opci\xF3`,
|
|
302
|
+
"s54393bfa280ea55b": `Prompt`,
|
|
303
|
+
"s7254ca27b16ae2d8": `Hamis`,
|
|
304
|
+
"s80dc9f56411917df": `Kiemelend\u0151 sz\xF6veg`,
|
|
305
|
+
"s85ea99fb52be3385": `Igaz`,
|
|
306
|
+
"sb3d4f79d9d8b71e5": `K\xFCldje be a`,
|
|
307
|
+
"sc56e9323f076a11e": `H\xE9zagok hozz\xE1ad\xE1s\xE1ra szolg\xE1l\xF3 sz\xF6veg`,
|
|
308
|
+
"scd1dd6ff53d0d01a": `Pr\xF3b\xE1lja \xFAjra`,
|
|
309
|
+
"sd26e8d4eef55e341": `Ellen\u0151rizze v\xE1laszait`
|
|
310
|
+
};
|
|
311
|
+
}
|
|
312
|
+
});
|
|
313
|
+
|
|
314
|
+
// localization/generated/id.ts
|
|
315
|
+
var id_exports = {};
|
|
316
|
+
__export(id_exports, {
|
|
317
|
+
templates: () => templates12
|
|
318
|
+
});
|
|
319
|
+
var templates12;
|
|
320
|
+
var init_id = __esm({
|
|
321
|
+
"localization/generated/id.ts"() {
|
|
322
|
+
templates12 = {
|
|
323
|
+
"s159928724265eb05": `Tambahkan Opsi`,
|
|
324
|
+
"s1b23c41934894f30": `Penjelasan`,
|
|
325
|
+
"s255857544a9d5ec0": `Atur ulang`,
|
|
326
|
+
"s4802e47fe2e95134": `Opsi`,
|
|
327
|
+
"s54393bfa280ea55b": `Cepat`,
|
|
328
|
+
"s7254ca27b16ae2d8": `Salah`,
|
|
329
|
+
"s80dc9f56411917df": `Teks untuk Disorot`,
|
|
330
|
+
"s85ea99fb52be3385": `Benar`,
|
|
331
|
+
"sb3d4f79d9d8b71e5": `Kirim`,
|
|
332
|
+
"sc56e9323f076a11e": `Teks yang akan ditambahkan celah`,
|
|
333
|
+
"scd1dd6ff53d0d01a": `Coba lagi`,
|
|
334
|
+
"sd26e8d4eef55e341": `Periksa jawaban Anda`
|
|
335
|
+
};
|
|
336
|
+
}
|
|
337
|
+
});
|
|
338
|
+
|
|
339
|
+
// localization/generated/it.ts
|
|
340
|
+
var it_exports = {};
|
|
341
|
+
__export(it_exports, {
|
|
342
|
+
templates: () => templates13
|
|
343
|
+
});
|
|
344
|
+
var templates13;
|
|
345
|
+
var init_it = __esm({
|
|
346
|
+
"localization/generated/it.ts"() {
|
|
347
|
+
templates13 = {
|
|
348
|
+
"s159928724265eb05": `Aggiungi opzione`,
|
|
349
|
+
"s1b23c41934894f30": `Spiegazione`,
|
|
350
|
+
"s255857544a9d5ec0": `Reset`,
|
|
351
|
+
"s4802e47fe2e95134": `Opzione`,
|
|
352
|
+
"s54393bfa280ea55b": `Prompt`,
|
|
353
|
+
"s7254ca27b16ae2d8": `Falso`,
|
|
354
|
+
"s80dc9f56411917df": `Testo da evidenziare`,
|
|
355
|
+
"s85ea99fb52be3385": `Vero`,
|
|
356
|
+
"sb3d4f79d9d8b71e5": `Invia`,
|
|
357
|
+
"sc56e9323f076a11e": `Testo a cui aggiungere spazi vuoti`,
|
|
358
|
+
"scd1dd6ff53d0d01a": `Riprova`,
|
|
359
|
+
"sd26e8d4eef55e341": `Controllare le risposte`
|
|
360
|
+
};
|
|
361
|
+
}
|
|
362
|
+
});
|
|
363
|
+
|
|
364
|
+
// localization/generated/ja.ts
|
|
365
|
+
var ja_exports = {};
|
|
366
|
+
__export(ja_exports, {
|
|
367
|
+
templates: () => templates14
|
|
368
|
+
});
|
|
369
|
+
var templates14;
|
|
370
|
+
var init_ja = __esm({
|
|
371
|
+
"localization/generated/ja.ts"() {
|
|
372
|
+
templates14 = {
|
|
373
|
+
"s159928724265eb05": `\u30AA\u30D7\u30B7\u30E7\u30F3\u8FFD\u52A0`,
|
|
374
|
+
"s1b23c41934894f30": `\u8AAC\u660E`,
|
|
375
|
+
"s255857544a9d5ec0": `\u30EA\u30BB\u30C3\u30C8`,
|
|
376
|
+
"s4802e47fe2e95134": `\u30AA\u30D7\u30B7\u30E7\u30F3`,
|
|
377
|
+
"s54393bfa280ea55b": `\u30D7\u30ED\u30F3\u30D7\u30C8`,
|
|
378
|
+
"s7254ca27b16ae2d8": `\u507D`,
|
|
379
|
+
"s80dc9f56411917df": `\u30CF\u30A4\u30E9\u30A4\u30C8\u3059\u308B\u30C6\u30AD\u30B9\u30C8`,
|
|
380
|
+
"s85ea99fb52be3385": `\u771F`,
|
|
381
|
+
"sb3d4f79d9d8b71e5": `\u6295\u7A3F\u3059\u308B`,
|
|
382
|
+
"sc56e9323f076a11e": `\u30AE\u30E3\u30C3\u30D7\u3092\u8FFD\u52A0\u3059\u308B\u30C6\u30AD\u30B9\u30C8`,
|
|
383
|
+
"scd1dd6ff53d0d01a": `\u518D\u8A66\u884C`,
|
|
384
|
+
"sd26e8d4eef55e341": `\u7B54\u3048\u3092\u30C1\u30A7\u30C3\u30AF\u3059\u308B`
|
|
385
|
+
};
|
|
386
|
+
}
|
|
387
|
+
});
|
|
388
|
+
|
|
389
|
+
// localization/generated/ko.ts
|
|
390
|
+
var ko_exports = {};
|
|
391
|
+
__export(ko_exports, {
|
|
392
|
+
templates: () => templates15
|
|
393
|
+
});
|
|
394
|
+
var templates15;
|
|
395
|
+
var init_ko = __esm({
|
|
396
|
+
"localization/generated/ko.ts"() {
|
|
397
|
+
templates15 = {
|
|
398
|
+
"s159928724265eb05": `\uC635\uC158 \uCD94\uAC00`,
|
|
399
|
+
"s1b23c41934894f30": `\uC124\uBA85`,
|
|
400
|
+
"s255857544a9d5ec0": `\uCD08\uAE30\uD654`,
|
|
401
|
+
"s4802e47fe2e95134": `\uC635\uC158`,
|
|
402
|
+
"s54393bfa280ea55b": `\uD504\uB86C\uD504\uD2B8`,
|
|
403
|
+
"s7254ca27b16ae2d8": `False`,
|
|
404
|
+
"s80dc9f56411917df": `\uAC15\uC870 \uD45C\uC2DC\uD560 \uD14D\uC2A4\uD2B8`,
|
|
405
|
+
"s85ea99fb52be3385": `True`,
|
|
406
|
+
"sb3d4f79d9d8b71e5": `\uC81C\uCD9C\uD558\uAE30`,
|
|
407
|
+
"sc56e9323f076a11e": `\uACF5\uBC31\uC744 \uCD94\uAC00\uD560 \uD14D\uC2A4\uD2B8`,
|
|
408
|
+
"scd1dd6ff53d0d01a": `\uB2E4\uC2DC \uC2DC\uB3C4`,
|
|
409
|
+
"sd26e8d4eef55e341": `\uB2F5\uBCC0 \uD655\uC778`
|
|
410
|
+
};
|
|
411
|
+
}
|
|
412
|
+
});
|
|
413
|
+
|
|
414
|
+
// localization/generated/lt.ts
|
|
415
|
+
var lt_exports = {};
|
|
416
|
+
__export(lt_exports, {
|
|
417
|
+
templates: () => templates16
|
|
418
|
+
});
|
|
419
|
+
var templates16;
|
|
420
|
+
var init_lt = __esm({
|
|
421
|
+
"localization/generated/lt.ts"() {
|
|
422
|
+
templates16 = {
|
|
423
|
+
"s159928724265eb05": `Prid\u0117ti parinkt\u012F`,
|
|
424
|
+
"s1b23c41934894f30": `Paai\u0161kinimas`,
|
|
425
|
+
"s255857544a9d5ec0": `I\u0161 naujo nustatyti`,
|
|
426
|
+
"s4802e47fe2e95134": `Galimyb\u0117`,
|
|
427
|
+
"s54393bfa280ea55b": `Paraginimas`,
|
|
428
|
+
"s7254ca27b16ae2d8": `Klaidingas`,
|
|
429
|
+
"s80dc9f56411917df": `Teksto pary\u0161kinimas`,
|
|
430
|
+
"s85ea99fb52be3385": `Tiesa`,
|
|
431
|
+
"sb3d4f79d9d8b71e5": `Pateikti`,
|
|
432
|
+
"sc56e9323f076a11e": `Tekstas, prie kurio pridedami tarpai`,
|
|
433
|
+
"scd1dd6ff53d0d01a": `Pabandykite dar kart\u0105`,
|
|
434
|
+
"sd26e8d4eef55e341": `Patikrinkite savo atsakymus`
|
|
435
|
+
};
|
|
436
|
+
}
|
|
437
|
+
});
|
|
438
|
+
|
|
439
|
+
// localization/generated/lv.ts
|
|
440
|
+
var lv_exports = {};
|
|
441
|
+
__export(lv_exports, {
|
|
442
|
+
templates: () => templates17
|
|
443
|
+
});
|
|
444
|
+
var templates17;
|
|
445
|
+
var init_lv = __esm({
|
|
446
|
+
"localization/generated/lv.ts"() {
|
|
447
|
+
templates17 = {
|
|
448
|
+
"s159928724265eb05": `Pievienot iesp\u0113ju`,
|
|
449
|
+
"s1b23c41934894f30": `Paskaidrojums`,
|
|
450
|
+
"s255857544a9d5ec0": `Atiestat\u012Bt`,
|
|
451
|
+
"s4802e47fe2e95134": `Iesp\u0113ja`,
|
|
452
|
+
"s54393bfa280ea55b": `Uzaicin\u0101jums`,
|
|
453
|
+
"s7254ca27b16ae2d8": `Viltus`,
|
|
454
|
+
"s80dc9f56411917df": `Teksta izcel\u0161ana`,
|
|
455
|
+
"s85ea99fb52be3385": `True`,
|
|
456
|
+
"sb3d4f79d9d8b71e5": `Iesniegt`,
|
|
457
|
+
"sc56e9323f076a11e": `Teksts, kam pievienot atstarpes`,
|
|
458
|
+
"scd1dd6ff53d0d01a": `M\u0113\u0123iniet v\u0113lreiz`,
|
|
459
|
+
"sd26e8d4eef55e341": `P\u0101rbaudiet savas atbildes`
|
|
460
|
+
};
|
|
461
|
+
}
|
|
462
|
+
});
|
|
463
|
+
|
|
464
|
+
// localization/generated/nb.ts
|
|
465
|
+
var nb_exports = {};
|
|
466
|
+
__export(nb_exports, {
|
|
467
|
+
templates: () => templates18
|
|
468
|
+
});
|
|
469
|
+
var templates18;
|
|
470
|
+
var init_nb = __esm({
|
|
471
|
+
"localization/generated/nb.ts"() {
|
|
472
|
+
templates18 = {
|
|
473
|
+
"s159928724265eb05": `Legg til alternativ`,
|
|
474
|
+
"s1b23c41934894f30": `Forklaring`,
|
|
475
|
+
"s255857544a9d5ec0": `Tilbakestill`,
|
|
476
|
+
"s4802e47fe2e95134": `Alternativ`,
|
|
477
|
+
"s54393bfa280ea55b": `Sp\xF8r`,
|
|
478
|
+
"s7254ca27b16ae2d8": `Falsk`,
|
|
479
|
+
"s80dc9f56411917df": `Tekst som skal fremheves`,
|
|
480
|
+
"s85ea99fb52be3385": `Sant`,
|
|
481
|
+
"sb3d4f79d9d8b71e5": `Send inn`,
|
|
482
|
+
"sc56e9323f076a11e": `Tekst for \xE5 legge til mellomrom`,
|
|
483
|
+
"scd1dd6ff53d0d01a": `Pr\xF8v igjen`,
|
|
484
|
+
"sd26e8d4eef55e341": `Sjekk svarene dine`
|
|
485
|
+
};
|
|
486
|
+
}
|
|
487
|
+
});
|
|
488
|
+
|
|
489
|
+
// localization/generated/nl.ts
|
|
490
|
+
var nl_exports = {};
|
|
491
|
+
__export(nl_exports, {
|
|
492
|
+
templates: () => templates19
|
|
493
|
+
});
|
|
494
|
+
var templates19;
|
|
495
|
+
var init_nl = __esm({
|
|
496
|
+
"localization/generated/nl.ts"() {
|
|
497
|
+
templates19 = {
|
|
498
|
+
"s159928724265eb05": `Optie toevoegen`,
|
|
499
|
+
"s1b23c41934894f30": `Uitleg`,
|
|
500
|
+
"s255857544a9d5ec0": `Reset`,
|
|
501
|
+
"s4802e47fe2e95134": `Optie`,
|
|
502
|
+
"s54393bfa280ea55b": `Prompt`,
|
|
503
|
+
"s7254ca27b16ae2d8": `Valse`,
|
|
504
|
+
"s80dc9f56411917df": `Te markeren tekst`,
|
|
505
|
+
"s85ea99fb52be3385": `Echt`,
|
|
506
|
+
"sb3d4f79d9d8b71e5": `Stuur in`,
|
|
507
|
+
"sc56e9323f076a11e": `Tekst om gaten aan toe te voegen`,
|
|
508
|
+
"scd1dd6ff53d0d01a": `Probeer het opnieuw`,
|
|
509
|
+
"sd26e8d4eef55e341": `Controleer je antwoorden`
|
|
510
|
+
};
|
|
511
|
+
}
|
|
512
|
+
});
|
|
513
|
+
|
|
514
|
+
// localization/generated/pl.ts
|
|
515
|
+
var pl_exports = {};
|
|
516
|
+
__export(pl_exports, {
|
|
517
|
+
templates: () => templates20
|
|
518
|
+
});
|
|
519
|
+
var templates20;
|
|
520
|
+
var init_pl = __esm({
|
|
521
|
+
"localization/generated/pl.ts"() {
|
|
522
|
+
templates20 = {
|
|
523
|
+
"s159928724265eb05": `Dodaj opcj\u0119`,
|
|
524
|
+
"s1b23c41934894f30": `Wyja\u015Bnienie`,
|
|
525
|
+
"s255857544a9d5ec0": `Reset`,
|
|
526
|
+
"s4802e47fe2e95134": `Opcja`,
|
|
527
|
+
"s54393bfa280ea55b": `Podpowied\u017A`,
|
|
528
|
+
"s7254ca27b16ae2d8": `Fa\u0142sz`,
|
|
529
|
+
"s80dc9f56411917df": `Tekst do pod\u015Bwietlenia`,
|
|
530
|
+
"s85ea99fb52be3385": `Prawda`,
|
|
531
|
+
"sb3d4f79d9d8b71e5": `Prze\u015Blij`,
|
|
532
|
+
"sc56e9323f076a11e": `Tekst do dodania przerw`,
|
|
533
|
+
"scd1dd6ff53d0d01a": `Spr\xF3buj ponownie`,
|
|
534
|
+
"sd26e8d4eef55e341": `Sprawd\u017A swoje odpowiedzi`
|
|
535
|
+
};
|
|
536
|
+
}
|
|
537
|
+
});
|
|
538
|
+
|
|
539
|
+
// localization/generated/pt-BR.ts
|
|
540
|
+
var pt_BR_exports = {};
|
|
541
|
+
__export(pt_BR_exports, {
|
|
542
|
+
templates: () => templates21
|
|
543
|
+
});
|
|
544
|
+
var templates21;
|
|
545
|
+
var init_pt_BR = __esm({
|
|
546
|
+
"localization/generated/pt-BR.ts"() {
|
|
547
|
+
templates21 = {
|
|
548
|
+
"s159928724265eb05": `Adicionar op\xE7\xE3o`,
|
|
549
|
+
"s1b23c41934894f30": `Explica\xE7\xE3o`,
|
|
550
|
+
"s255857544a9d5ec0": `Redefinir`,
|
|
551
|
+
"s4802e47fe2e95134": `Op\xE7\xE3o`,
|
|
552
|
+
"s54393bfa280ea55b": `Prompt`,
|
|
553
|
+
"s7254ca27b16ae2d8": `Falso`,
|
|
554
|
+
"s80dc9f56411917df": `Texto para destacar`,
|
|
555
|
+
"s85ea99fb52be3385": `Verdadeiro`,
|
|
556
|
+
"sb3d4f79d9d8b71e5": `Enviar`,
|
|
557
|
+
"sc56e9323f076a11e": `Texto para adicionar lacunas`,
|
|
558
|
+
"scd1dd6ff53d0d01a": `Tente novamente`,
|
|
559
|
+
"sd26e8d4eef55e341": `Verifique suas respostas`
|
|
560
|
+
};
|
|
561
|
+
}
|
|
562
|
+
});
|
|
563
|
+
|
|
564
|
+
// localization/generated/pt-PT.ts
|
|
565
|
+
var pt_PT_exports = {};
|
|
566
|
+
__export(pt_PT_exports, {
|
|
567
|
+
templates: () => templates22
|
|
568
|
+
});
|
|
569
|
+
var templates22;
|
|
570
|
+
var init_pt_PT = __esm({
|
|
571
|
+
"localization/generated/pt-PT.ts"() {
|
|
572
|
+
templates22 = {
|
|
573
|
+
"s159928724265eb05": `Adicionar op\xE7\xE3o`,
|
|
574
|
+
"s1b23c41934894f30": `Explica\xE7\xE3o`,
|
|
575
|
+
"s255857544a9d5ec0": `Reiniciar`,
|
|
576
|
+
"s4802e47fe2e95134": `Op\xE7\xE3o`,
|
|
577
|
+
"s54393bfa280ea55b": `Prompt`,
|
|
578
|
+
"s7254ca27b16ae2d8": `Falso`,
|
|
579
|
+
"s80dc9f56411917df": `Texto a real\xE7ar`,
|
|
580
|
+
"s85ea99fb52be3385": `Verdadeiro`,
|
|
581
|
+
"sb3d4f79d9d8b71e5": `Enviar`,
|
|
582
|
+
"sc56e9323f076a11e": `Texto para adicionar lacunas`,
|
|
583
|
+
"scd1dd6ff53d0d01a": `Tentar novamente`,
|
|
584
|
+
"sd26e8d4eef55e341": `Verifique as suas respostas`
|
|
585
|
+
};
|
|
586
|
+
}
|
|
587
|
+
});
|
|
588
|
+
|
|
589
|
+
// localization/generated/ro.ts
|
|
590
|
+
var ro_exports = {};
|
|
591
|
+
__export(ro_exports, {
|
|
592
|
+
templates: () => templates23
|
|
593
|
+
});
|
|
594
|
+
var templates23;
|
|
595
|
+
var init_ro = __esm({
|
|
596
|
+
"localization/generated/ro.ts"() {
|
|
597
|
+
templates23 = {
|
|
598
|
+
"s159928724265eb05": `Adaug\u0103 op\u021Biune`,
|
|
599
|
+
"s1b23c41934894f30": `Explica\u021Bie`,
|
|
600
|
+
"s255857544a9d5ec0": `Resetare`,
|
|
601
|
+
"s4802e47fe2e95134": `Op\u021Biune`,
|
|
602
|
+
"s54393bfa280ea55b": `Prompt`,
|
|
603
|
+
"s7254ca27b16ae2d8": `Fals`,
|
|
604
|
+
"s80dc9f56411917df": `Text pentru eviden\u021Biere`,
|
|
605
|
+
"s85ea99fb52be3385": `Adev\u0103rat`,
|
|
606
|
+
"sb3d4f79d9d8b71e5": `Trimite`,
|
|
607
|
+
"sc56e9323f076a11e": `Text la care s\u0103 ad\u0103uga\u021Bi spa\u021Bii libere`,
|
|
608
|
+
"scd1dd6ff53d0d01a": `\xCEncerca\u021Bi din nou`,
|
|
609
|
+
"sd26e8d4eef55e341": `Verific\u0103-\u021Bi r\u0103spunsurile`
|
|
610
|
+
};
|
|
611
|
+
}
|
|
612
|
+
});
|
|
613
|
+
|
|
614
|
+
// localization/generated/ru.ts
|
|
615
|
+
var ru_exports = {};
|
|
616
|
+
__export(ru_exports, {
|
|
617
|
+
templates: () => templates24
|
|
618
|
+
});
|
|
619
|
+
var templates24;
|
|
620
|
+
var init_ru = __esm({
|
|
621
|
+
"localization/generated/ru.ts"() {
|
|
622
|
+
templates24 = {
|
|
623
|
+
"s159928724265eb05": `\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043E\u043F\u0446\u0438\u044E`,
|
|
624
|
+
"s1b23c41934894f30": `\u041F\u043E\u044F\u0441\u043D\u0435\u043D\u0438\u0435`,
|
|
625
|
+
"s255857544a9d5ec0": `\u0421\u0431\u0440\u043E\u0441`,
|
|
626
|
+
"s4802e47fe2e95134": `\u0412\u0430\u0440\u0438\u0430\u043D\u0442`,
|
|
627
|
+
"s54393bfa280ea55b": `\u0421\u043F\u0440\u0430\u0432\u043A\u0430`,
|
|
628
|
+
"s7254ca27b16ae2d8": `\u041B\u043E\u0436\u044C`,
|
|
629
|
+
"s80dc9f56411917df": `\u0422\u0435\u043A\u0441\u0442 \u0434\u043B\u044F \u0432\u044B\u0434\u0435\u043B\u0435\u043D\u0438\u044F`,
|
|
630
|
+
"s85ea99fb52be3385": `\u041F\u0440\u0430\u0432\u0434\u0430`,
|
|
631
|
+
"sb3d4f79d9d8b71e5": `\u041E\u0442\u043F\u0440\u0430\u0432\u0438\u0442\u044C`,
|
|
632
|
+
"sc56e9323f076a11e": `\u0422\u0435\u043A\u0441\u0442 \u0434\u043B\u044F \u0434\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u0438\u044F \u043F\u0440\u043E\u0431\u0435\u043B\u043E\u0432`,
|
|
633
|
+
"scd1dd6ff53d0d01a": `\u041F\u043E\u043F\u0440\u043E\u0431\u0443\u0439\u0442\u0435 \u0435\u0449\u0435 \u0440\u0430\u0437`,
|
|
634
|
+
"sd26e8d4eef55e341": `\u041F\u0440\u043E\u0432\u0435\u0440\u044C\u0442\u0435 \u0441\u0432\u043E\u0438 \u043E\u0442\u0432\u0435\u0442\u044B`
|
|
635
|
+
};
|
|
636
|
+
}
|
|
637
|
+
});
|
|
638
|
+
|
|
639
|
+
// localization/generated/sk.ts
|
|
640
|
+
var sk_exports = {};
|
|
641
|
+
__export(sk_exports, {
|
|
642
|
+
templates: () => templates25
|
|
643
|
+
});
|
|
644
|
+
var templates25;
|
|
645
|
+
var init_sk = __esm({
|
|
646
|
+
"localization/generated/sk.ts"() {
|
|
647
|
+
templates25 = {
|
|
648
|
+
"s159928724265eb05": `Prida\u0165 mo\u017Enos\u0165`,
|
|
649
|
+
"s1b23c41934894f30": `Vysvetlenie`,
|
|
650
|
+
"s255857544a9d5ec0": `Obnovenie`,
|
|
651
|
+
"s4802e47fe2e95134": `Mo\u017Enos\u0165`,
|
|
652
|
+
"s54393bfa280ea55b": `Prompt`,
|
|
653
|
+
"s7254ca27b16ae2d8": `False`,
|
|
654
|
+
"s80dc9f56411917df": `Text na zv\xFDraznenie`,
|
|
655
|
+
"s85ea99fb52be3385": `Pravda`,
|
|
656
|
+
"sb3d4f79d9d8b71e5": `Odosla\u0165`,
|
|
657
|
+
"sc56e9323f076a11e": `Text na pridanie medzier`,
|
|
658
|
+
"scd1dd6ff53d0d01a": `Sk\xFAste to znova`,
|
|
659
|
+
"sd26e8d4eef55e341": `Skontrolujte svoje odpovede`
|
|
660
|
+
};
|
|
661
|
+
}
|
|
662
|
+
});
|
|
663
|
+
|
|
664
|
+
// localization/generated/sl.ts
|
|
665
|
+
var sl_exports = {};
|
|
666
|
+
__export(sl_exports, {
|
|
667
|
+
templates: () => templates26
|
|
668
|
+
});
|
|
669
|
+
var templates26;
|
|
670
|
+
var init_sl = __esm({
|
|
671
|
+
"localization/generated/sl.ts"() {
|
|
672
|
+
templates26 = {
|
|
673
|
+
"s159928724265eb05": `Dodajanje mo\u017Enosti`,
|
|
674
|
+
"s1b23c41934894f30": `Razlaga:`,
|
|
675
|
+
"s255857544a9d5ec0": `Ponastavitev`,
|
|
676
|
+
"s4802e47fe2e95134": `Mo\u017Enost`,
|
|
677
|
+
"s54393bfa280ea55b": `Poziv`,
|
|
678
|
+
"s7254ca27b16ae2d8": `La\u017Eno`,
|
|
679
|
+
"s80dc9f56411917df": `Besedilo za poudarjanje`,
|
|
680
|
+
"s85ea99fb52be3385": `Resni\u010Dno`,
|
|
681
|
+
"sb3d4f79d9d8b71e5": `Po\u0161lji`,
|
|
682
|
+
"sc56e9323f076a11e": `Besedilo za dodajanje presledkov`,
|
|
683
|
+
"scd1dd6ff53d0d01a": `Poskusite znova`,
|
|
684
|
+
"sd26e8d4eef55e341": `Preverite svoje odgovore`
|
|
685
|
+
};
|
|
686
|
+
}
|
|
687
|
+
});
|
|
688
|
+
|
|
689
|
+
// localization/generated/sv.ts
|
|
690
|
+
var sv_exports = {};
|
|
691
|
+
__export(sv_exports, {
|
|
692
|
+
templates: () => templates27
|
|
693
|
+
});
|
|
694
|
+
var templates27;
|
|
695
|
+
var init_sv = __esm({
|
|
696
|
+
"localization/generated/sv.ts"() {
|
|
697
|
+
templates27 = {
|
|
698
|
+
"s159928724265eb05": `L\xE4gg till alternativ`,
|
|
699
|
+
"s1b23c41934894f30": `F\xF6rklaring`,
|
|
700
|
+
"s255857544a9d5ec0": `\xC5terst\xE4llning`,
|
|
701
|
+
"s4802e47fe2e95134": `Alternativ`,
|
|
702
|
+
"s54393bfa280ea55b": `Fr\xE5gest\xE4llning`,
|
|
703
|
+
"s7254ca27b16ae2d8": `Falsk`,
|
|
704
|
+
"s80dc9f56411917df": `Text att lyfta fram`,
|
|
705
|
+
"s85ea99fb52be3385": `Sant`,
|
|
706
|
+
"sb3d4f79d9d8b71e5": `Skicka in`,
|
|
707
|
+
"sc56e9323f076a11e": `Text att l\xE4gga till luckor i`,
|
|
708
|
+
"scd1dd6ff53d0d01a": `F\xF6rs\xF6k igen`,
|
|
709
|
+
"sd26e8d4eef55e341": `Kontrollera dina svar`
|
|
710
|
+
};
|
|
711
|
+
}
|
|
712
|
+
});
|
|
713
|
+
|
|
714
|
+
// localization/generated/tr.ts
|
|
715
|
+
var tr_exports = {};
|
|
716
|
+
__export(tr_exports, {
|
|
717
|
+
templates: () => templates28
|
|
718
|
+
});
|
|
719
|
+
var templates28;
|
|
720
|
+
var init_tr = __esm({
|
|
721
|
+
"localization/generated/tr.ts"() {
|
|
722
|
+
templates28 = {
|
|
723
|
+
"s159928724265eb05": `Se\xE7enek Ekle`,
|
|
724
|
+
"s1b23c41934894f30": `A\xE7\u0131klama`,
|
|
725
|
+
"s255857544a9d5ec0": `S\u0131f\u0131rla`,
|
|
726
|
+
"s4802e47fe2e95134": `Opsiyon`,
|
|
727
|
+
"s54393bfa280ea55b": `\u0130stem`,
|
|
728
|
+
"s7254ca27b16ae2d8": `Yanl\u0131\u015F`,
|
|
729
|
+
"s80dc9f56411917df": `Vurgulanacak Metin`,
|
|
730
|
+
"s85ea99fb52be3385": `Do\u011Fru`,
|
|
731
|
+
"sb3d4f79d9d8b71e5": `G\xF6nder`,
|
|
732
|
+
"sc56e9323f076a11e": `Bo\u015Fluk eklenecek metin`,
|
|
733
|
+
"scd1dd6ff53d0d01a": `Tekrar deneyin`,
|
|
734
|
+
"sd26e8d4eef55e341": `Cevaplar\u0131n\u0131z\u0131 kontrol edin`
|
|
735
|
+
};
|
|
736
|
+
}
|
|
737
|
+
});
|
|
738
|
+
|
|
739
|
+
// localization/generated/uk.ts
|
|
740
|
+
var uk_exports = {};
|
|
741
|
+
__export(uk_exports, {
|
|
742
|
+
templates: () => templates29
|
|
743
|
+
});
|
|
744
|
+
var templates29;
|
|
745
|
+
var init_uk = __esm({
|
|
746
|
+
"localization/generated/uk.ts"() {
|
|
747
|
+
templates29 = {
|
|
748
|
+
"s159928724265eb05": `\u0414\u043E\u0434\u0430\u0442\u0438 \u043E\u043F\u0446\u0456\u044E`,
|
|
749
|
+
"s1b23c41934894f30": `\u041F\u043E\u044F\u0441\u043D\u0435\u043D\u043D\u044F`,
|
|
750
|
+
"s255857544a9d5ec0": `\u041F\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F`,
|
|
751
|
+
"s4802e47fe2e95134": `\u0412\u0430\u0440\u0456\u0430\u043D\u0442`,
|
|
752
|
+
"s54393bfa280ea55b": `\u0428\u0432\u0438\u0434\u043A\u043E`,
|
|
753
|
+
"s7254ca27b16ae2d8": `\u041D\u0435\u043F\u0440\u0430\u0432\u0434\u0430.`,
|
|
754
|
+
"s80dc9f56411917df": `\u0422\u0435\u043A\u0441\u0442 \u0434\u043B\u044F \u0432\u0438\u0434\u0456\u043B\u0435\u043D\u043D\u044F`,
|
|
755
|
+
"s85ea99fb52be3385": `\u041F\u0440\u0430\u0432\u0434\u0430.`,
|
|
756
|
+
"sb3d4f79d9d8b71e5": `\u041D\u0430\u0434\u0456\u0441\u043B\u0430\u0442\u0438`,
|
|
757
|
+
"sc56e9323f076a11e": `\u0422\u0435\u043A\u0441\u0442, \u0434\u043E \u044F\u043A\u043E\u0433\u043E \u043F\u043E\u0442\u0440\u0456\u0431\u043D\u043E \u0434\u043E\u0434\u0430\u0442\u0438 \u043F\u0440\u043E\u0431\u0456\u043B\u0438`,
|
|
758
|
+
"scd1dd6ff53d0d01a": `\u0421\u043F\u0440\u043E\u0431\u0443\u0439\u0442\u0435 \u0449\u0435 \u0440\u0430\u0437.`,
|
|
759
|
+
"sd26e8d4eef55e341": `\u041F\u0435\u0440\u0435\u0432\u0456\u0440\u0442\u0435 \u0441\u0432\u043E\u0457 \u0432\u0456\u0434\u043F\u043E\u0432\u0456\u0434\u0456`
|
|
760
|
+
};
|
|
761
|
+
}
|
|
762
|
+
});
|
|
763
|
+
|
|
764
|
+
// localization/generated/zh-hans.ts
|
|
765
|
+
var zh_hans_exports = {};
|
|
766
|
+
__export(zh_hans_exports, {
|
|
767
|
+
templates: () => templates30
|
|
768
|
+
});
|
|
769
|
+
var templates30;
|
|
770
|
+
var init_zh_hans = __esm({
|
|
771
|
+
"localization/generated/zh-hans.ts"() {
|
|
772
|
+
templates30 = {
|
|
773
|
+
"s159928724265eb05": `\u6DFB\u52A0\u9009\u9879`,
|
|
774
|
+
"s1b23c41934894f30": `\u8BF4\u660E`,
|
|
775
|
+
"s255857544a9d5ec0": `\u91CD\u7F6E`,
|
|
776
|
+
"s4802e47fe2e95134": `\u9009\u9879`,
|
|
777
|
+
"s54393bfa280ea55b": `\u63D0\u793A`,
|
|
778
|
+
"s7254ca27b16ae2d8": `\u5047\u7684`,
|
|
779
|
+
"s80dc9f56411917df": `\u7A81\u51FA\u663E\u793A\u6587\u672C`,
|
|
780
|
+
"s85ea99fb52be3385": `\u6B63\u786E`,
|
|
781
|
+
"sb3d4f79d9d8b71e5": `\u63D0\u4EA4`,
|
|
782
|
+
"sc56e9323f076a11e": `\u4E3A\u6587\u672C\u6DFB\u52A0\u95F4\u9699`,
|
|
783
|
+
"scd1dd6ff53d0d01a": `\u518D\u8BD5\u4E00\u6B21`,
|
|
784
|
+
"sd26e8d4eef55e341": `\u68C0\u67E5\u7B54\u6848`
|
|
785
|
+
};
|
|
786
|
+
}
|
|
787
|
+
});
|
|
788
|
+
|
|
789
|
+
// node_modules/@lit/reactive-element/css-tag.js
|
|
52
790
|
var t = globalThis;
|
|
53
791
|
var e = t.ShadowRoot && (void 0 === t.ShadyCSS || t.ShadyCSS.nativeShadow) && "adoptedStyleSheets" in Document.prototype && "replace" in CSSStyleSheet.prototype;
|
|
54
792
|
var s = Symbol();
|
|
55
793
|
var o = /* @__PURE__ */ new WeakMap();
|
|
56
794
|
var n = class {
|
|
57
|
-
constructor(
|
|
58
|
-
if (this._$cssResult$ = true,
|
|
59
|
-
this.cssText =
|
|
795
|
+
constructor(t7, e10, o8) {
|
|
796
|
+
if (this._$cssResult$ = true, o8 !== s) throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");
|
|
797
|
+
this.cssText = t7, this.t = e10;
|
|
60
798
|
}
|
|
61
799
|
get styleSheet() {
|
|
62
|
-
let
|
|
63
|
-
const
|
|
64
|
-
if (e && void 0 ===
|
|
65
|
-
const
|
|
66
|
-
|
|
800
|
+
let t7 = this.o;
|
|
801
|
+
const s4 = this.t;
|
|
802
|
+
if (e && void 0 === t7) {
|
|
803
|
+
const e10 = void 0 !== s4 && 1 === s4.length;
|
|
804
|
+
e10 && (t7 = o.get(s4)), void 0 === t7 && ((this.o = t7 = new CSSStyleSheet()).replaceSync(this.cssText), e10 && o.set(s4, t7));
|
|
67
805
|
}
|
|
68
|
-
return
|
|
806
|
+
return t7;
|
|
69
807
|
}
|
|
70
808
|
toString() {
|
|
71
809
|
return this.cssText;
|
|
72
810
|
}
|
|
73
811
|
};
|
|
74
|
-
var r = (
|
|
75
|
-
var i = (
|
|
76
|
-
const
|
|
77
|
-
if (true ===
|
|
78
|
-
if ("number" == typeof
|
|
79
|
-
throw Error("Value passed to 'css' function must be a 'css' function result: " +
|
|
80
|
-
})(
|
|
81
|
-
return new n(
|
|
812
|
+
var r = (t7) => new n("string" == typeof t7 ? t7 : t7 + "", void 0, s);
|
|
813
|
+
var i = (t7, ...e10) => {
|
|
814
|
+
const o8 = 1 === t7.length ? t7[0] : e10.reduce((e11, s4, o9) => e11 + ((t8) => {
|
|
815
|
+
if (true === t8._$cssResult$) return t8.cssText;
|
|
816
|
+
if ("number" == typeof t8) return t8;
|
|
817
|
+
throw Error("Value passed to 'css' function must be a 'css' function result: " + t8 + ". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.");
|
|
818
|
+
})(s4) + t7[o9 + 1], t7[0]);
|
|
819
|
+
return new n(o8, t7, s);
|
|
82
820
|
};
|
|
83
|
-
var S = (
|
|
84
|
-
if (e)
|
|
85
|
-
else for (const
|
|
86
|
-
const
|
|
87
|
-
void 0 !==
|
|
821
|
+
var S = (s4, o8) => {
|
|
822
|
+
if (e) s4.adoptedStyleSheets = o8.map((t7) => t7 instanceof CSSStyleSheet ? t7 : t7.styleSheet);
|
|
823
|
+
else for (const e10 of o8) {
|
|
824
|
+
const o9 = document.createElement("style"), n7 = t.litNonce;
|
|
825
|
+
void 0 !== n7 && o9.setAttribute("nonce", n7), o9.textContent = e10.cssText, s4.appendChild(o9);
|
|
88
826
|
}
|
|
89
827
|
};
|
|
90
|
-
var c = e ? (
|
|
91
|
-
let
|
|
92
|
-
for (const
|
|
93
|
-
return r(
|
|
94
|
-
})(
|
|
828
|
+
var c = e ? (t7) => t7 : (t7) => t7 instanceof CSSStyleSheet ? ((t8) => {
|
|
829
|
+
let e10 = "";
|
|
830
|
+
for (const s4 of t8.cssRules) e10 += s4.cssText;
|
|
831
|
+
return r(e10);
|
|
832
|
+
})(t7) : t7;
|
|
95
833
|
|
|
96
|
-
//
|
|
834
|
+
// node_modules/@lit/reactive-element/reactive-element.js
|
|
97
835
|
var { is: i2, defineProperty: e2, getOwnPropertyDescriptor: r2, getOwnPropertyNames: h, getOwnPropertySymbols: o2, getPrototypeOf: n2 } = Object;
|
|
98
836
|
var a = globalThis;
|
|
99
837
|
var c2 = a.trustedTypes;
|
|
100
838
|
var l = c2 ? c2.emptyScript : "";
|
|
101
839
|
var p = a.reactiveElementPolyfillSupport;
|
|
102
|
-
var d = (
|
|
103
|
-
var u = { toAttribute(
|
|
104
|
-
switch (
|
|
840
|
+
var d = (t7, s4) => t7;
|
|
841
|
+
var u = { toAttribute(t7, s4) {
|
|
842
|
+
switch (s4) {
|
|
105
843
|
case Boolean:
|
|
106
|
-
|
|
844
|
+
t7 = t7 ? l : null;
|
|
107
845
|
break;
|
|
108
846
|
case Object:
|
|
109
847
|
case Array:
|
|
110
|
-
|
|
848
|
+
t7 = null == t7 ? t7 : JSON.stringify(t7);
|
|
111
849
|
}
|
|
112
|
-
return
|
|
113
|
-
}, fromAttribute(
|
|
114
|
-
let
|
|
115
|
-
switch (
|
|
850
|
+
return t7;
|
|
851
|
+
}, fromAttribute(t7, s4) {
|
|
852
|
+
let i8 = t7;
|
|
853
|
+
switch (s4) {
|
|
116
854
|
case Boolean:
|
|
117
|
-
|
|
855
|
+
i8 = null !== t7;
|
|
118
856
|
break;
|
|
119
857
|
case Number:
|
|
120
|
-
|
|
858
|
+
i8 = null === t7 ? null : Number(t7);
|
|
121
859
|
break;
|
|
122
860
|
case Object:
|
|
123
861
|
case Array:
|
|
124
862
|
try {
|
|
125
|
-
|
|
126
|
-
} catch (
|
|
127
|
-
|
|
863
|
+
i8 = JSON.parse(t7);
|
|
864
|
+
} catch (t8) {
|
|
865
|
+
i8 = null;
|
|
128
866
|
}
|
|
129
867
|
}
|
|
130
|
-
return
|
|
868
|
+
return i8;
|
|
131
869
|
} };
|
|
132
|
-
var f = (
|
|
870
|
+
var f = (t7, s4) => !i2(t7, s4);
|
|
133
871
|
var y = { attribute: true, type: String, converter: u, reflect: false, hasChanged: f };
|
|
134
872
|
Symbol.metadata ??= Symbol("metadata"), a.litPropertyMetadata ??= /* @__PURE__ */ new WeakMap();
|
|
135
873
|
var b = class extends HTMLElement {
|
|
136
|
-
static addInitializer(
|
|
137
|
-
this._$Ei(), (this.l ??= []).push(
|
|
874
|
+
static addInitializer(t7) {
|
|
875
|
+
this._$Ei(), (this.l ??= []).push(t7);
|
|
138
876
|
}
|
|
139
877
|
static get observedAttributes() {
|
|
140
878
|
return this.finalize(), this._$Eh && [...this._$Eh.keys()];
|
|
141
879
|
}
|
|
142
|
-
static createProperty(
|
|
143
|
-
if (
|
|
144
|
-
const
|
|
145
|
-
void 0 !==
|
|
880
|
+
static createProperty(t7, s4 = y) {
|
|
881
|
+
if (s4.state && (s4.attribute = false), this._$Ei(), this.elementProperties.set(t7, s4), !s4.noAccessor) {
|
|
882
|
+
const i8 = Symbol(), r8 = this.getPropertyDescriptor(t7, i8, s4);
|
|
883
|
+
void 0 !== r8 && e2(this.prototype, t7, r8);
|
|
146
884
|
}
|
|
147
885
|
}
|
|
148
|
-
static getPropertyDescriptor(
|
|
149
|
-
const { get:
|
|
150
|
-
return this[
|
|
151
|
-
}, set(
|
|
152
|
-
this[
|
|
886
|
+
static getPropertyDescriptor(t7, s4, i8) {
|
|
887
|
+
const { get: e10, set: h4 } = r2(this.prototype, t7) ?? { get() {
|
|
888
|
+
return this[s4];
|
|
889
|
+
}, set(t8) {
|
|
890
|
+
this[s4] = t8;
|
|
153
891
|
} };
|
|
154
892
|
return { get() {
|
|
155
|
-
return
|
|
156
|
-
}, set(
|
|
157
|
-
const
|
|
158
|
-
|
|
893
|
+
return e10?.call(this);
|
|
894
|
+
}, set(s5) {
|
|
895
|
+
const r8 = e10?.call(this);
|
|
896
|
+
h4.call(this, s5), this.requestUpdate(t7, r8, i8);
|
|
159
897
|
}, configurable: true, enumerable: true };
|
|
160
898
|
}
|
|
161
|
-
static getPropertyOptions(
|
|
162
|
-
return this.elementProperties.get(
|
|
899
|
+
static getPropertyOptions(t7) {
|
|
900
|
+
return this.elementProperties.get(t7) ?? y;
|
|
163
901
|
}
|
|
164
902
|
static _$Ei() {
|
|
165
903
|
if (this.hasOwnProperty(d("elementProperties"))) return;
|
|
166
|
-
const
|
|
167
|
-
|
|
904
|
+
const t7 = n2(this);
|
|
905
|
+
t7.finalize(), void 0 !== t7.l && (this.l = [...t7.l]), this.elementProperties = new Map(t7.elementProperties);
|
|
168
906
|
}
|
|
169
907
|
static finalize() {
|
|
170
908
|
if (this.hasOwnProperty(d("finalized"))) return;
|
|
171
909
|
if (this.finalized = true, this._$Ei(), this.hasOwnProperty(d("properties"))) {
|
|
172
|
-
const
|
|
173
|
-
for (const
|
|
910
|
+
const t8 = this.properties, s4 = [...h(t8), ...o2(t8)];
|
|
911
|
+
for (const i8 of s4) this.createProperty(i8, t8[i8]);
|
|
174
912
|
}
|
|
175
|
-
const
|
|
176
|
-
if (null !==
|
|
177
|
-
const
|
|
178
|
-
if (void 0 !==
|
|
913
|
+
const t7 = this[Symbol.metadata];
|
|
914
|
+
if (null !== t7) {
|
|
915
|
+
const s4 = litPropertyMetadata.get(t7);
|
|
916
|
+
if (void 0 !== s4) for (const [t8, i8] of s4) this.elementProperties.set(t8, i8);
|
|
179
917
|
}
|
|
180
918
|
this._$Eh = /* @__PURE__ */ new Map();
|
|
181
|
-
for (const [
|
|
182
|
-
const
|
|
183
|
-
void 0 !==
|
|
919
|
+
for (const [t8, s4] of this.elementProperties) {
|
|
920
|
+
const i8 = this._$Eu(t8, s4);
|
|
921
|
+
void 0 !== i8 && this._$Eh.set(i8, t8);
|
|
184
922
|
}
|
|
185
923
|
this.elementStyles = this.finalizeStyles(this.styles);
|
|
186
924
|
}
|
|
187
|
-
static finalizeStyles(
|
|
188
|
-
const
|
|
189
|
-
if (Array.isArray(
|
|
190
|
-
const
|
|
191
|
-
for (const
|
|
192
|
-
} else void 0 !==
|
|
193
|
-
return
|
|
925
|
+
static finalizeStyles(s4) {
|
|
926
|
+
const i8 = [];
|
|
927
|
+
if (Array.isArray(s4)) {
|
|
928
|
+
const e10 = new Set(s4.flat(1 / 0).reverse());
|
|
929
|
+
for (const s5 of e10) i8.unshift(c(s5));
|
|
930
|
+
} else void 0 !== s4 && i8.push(c(s4));
|
|
931
|
+
return i8;
|
|
194
932
|
}
|
|
195
|
-
static _$Eu(
|
|
196
|
-
const
|
|
197
|
-
return false ===
|
|
933
|
+
static _$Eu(t7, s4) {
|
|
934
|
+
const i8 = s4.attribute;
|
|
935
|
+
return false === i8 ? void 0 : "string" == typeof i8 ? i8 : "string" == typeof t7 ? t7.toLowerCase() : void 0;
|
|
198
936
|
}
|
|
199
937
|
constructor() {
|
|
200
938
|
super(), this._$Ep = void 0, this.isUpdatePending = false, this.hasUpdated = false, this._$Em = null, this._$Ev();
|
|
201
939
|
}
|
|
202
940
|
_$Ev() {
|
|
203
|
-
this._$ES = new Promise((
|
|
941
|
+
this._$ES = new Promise((t7) => this.enableUpdating = t7), this._$AL = /* @__PURE__ */ new Map(), this._$E_(), this.requestUpdate(), this.constructor.l?.forEach((t7) => t7(this));
|
|
204
942
|
}
|
|
205
|
-
addController(
|
|
206
|
-
(this._$EO ??= /* @__PURE__ */ new Set()).add(
|
|
943
|
+
addController(t7) {
|
|
944
|
+
(this._$EO ??= /* @__PURE__ */ new Set()).add(t7), void 0 !== this.renderRoot && this.isConnected && t7.hostConnected?.();
|
|
207
945
|
}
|
|
208
|
-
removeController(
|
|
209
|
-
this._$EO?.delete(
|
|
946
|
+
removeController(t7) {
|
|
947
|
+
this._$EO?.delete(t7);
|
|
210
948
|
}
|
|
211
949
|
_$E_() {
|
|
212
|
-
const
|
|
213
|
-
for (const
|
|
214
|
-
|
|
950
|
+
const t7 = /* @__PURE__ */ new Map(), s4 = this.constructor.elementProperties;
|
|
951
|
+
for (const i8 of s4.keys()) this.hasOwnProperty(i8) && (t7.set(i8, this[i8]), delete this[i8]);
|
|
952
|
+
t7.size > 0 && (this._$Ep = t7);
|
|
215
953
|
}
|
|
216
954
|
createRenderRoot() {
|
|
217
|
-
const
|
|
218
|
-
return S(
|
|
955
|
+
const t7 = this.shadowRoot ?? this.attachShadow(this.constructor.shadowRootOptions);
|
|
956
|
+
return S(t7, this.constructor.elementStyles), t7;
|
|
219
957
|
}
|
|
220
958
|
connectedCallback() {
|
|
221
|
-
this.renderRoot ??= this.createRenderRoot(), this.enableUpdating(true), this._$EO?.forEach((
|
|
959
|
+
this.renderRoot ??= this.createRenderRoot(), this.enableUpdating(true), this._$EO?.forEach((t7) => t7.hostConnected?.());
|
|
222
960
|
}
|
|
223
|
-
enableUpdating(
|
|
961
|
+
enableUpdating(t7) {
|
|
224
962
|
}
|
|
225
963
|
disconnectedCallback() {
|
|
226
|
-
this._$EO?.forEach((
|
|
964
|
+
this._$EO?.forEach((t7) => t7.hostDisconnected?.());
|
|
227
965
|
}
|
|
228
|
-
attributeChangedCallback(
|
|
229
|
-
this._$AK(
|
|
966
|
+
attributeChangedCallback(t7, s4, i8) {
|
|
967
|
+
this._$AK(t7, i8);
|
|
230
968
|
}
|
|
231
|
-
_$EC(
|
|
232
|
-
const
|
|
233
|
-
if (void 0 !==
|
|
234
|
-
const
|
|
235
|
-
this._$Em =
|
|
969
|
+
_$EC(t7, s4) {
|
|
970
|
+
const i8 = this.constructor.elementProperties.get(t7), e10 = this.constructor._$Eu(t7, i8);
|
|
971
|
+
if (void 0 !== e10 && true === i8.reflect) {
|
|
972
|
+
const r8 = (void 0 !== i8.converter?.toAttribute ? i8.converter : u).toAttribute(s4, i8.type);
|
|
973
|
+
this._$Em = t7, null == r8 ? this.removeAttribute(e10) : this.setAttribute(e10, r8), this._$Em = null;
|
|
236
974
|
}
|
|
237
975
|
}
|
|
238
|
-
_$AK(
|
|
239
|
-
const
|
|
240
|
-
if (void 0 !==
|
|
241
|
-
const
|
|
242
|
-
this._$Em =
|
|
976
|
+
_$AK(t7, s4) {
|
|
977
|
+
const i8 = this.constructor, e10 = i8._$Eh.get(t7);
|
|
978
|
+
if (void 0 !== e10 && this._$Em !== e10) {
|
|
979
|
+
const t8 = i8.getPropertyOptions(e10), r8 = "function" == typeof t8.converter ? { fromAttribute: t8.converter } : void 0 !== t8.converter?.fromAttribute ? t8.converter : u;
|
|
980
|
+
this._$Em = e10, this[e10] = r8.fromAttribute(s4, t8.type), this._$Em = null;
|
|
243
981
|
}
|
|
244
982
|
}
|
|
245
|
-
requestUpdate(
|
|
246
|
-
if (void 0 !==
|
|
247
|
-
if (
|
|
248
|
-
this.P(
|
|
983
|
+
requestUpdate(t7, s4, i8) {
|
|
984
|
+
if (void 0 !== t7) {
|
|
985
|
+
if (i8 ??= this.constructor.getPropertyOptions(t7), !(i8.hasChanged ?? f)(this[t7], s4)) return;
|
|
986
|
+
this.P(t7, s4, i8);
|
|
249
987
|
}
|
|
250
988
|
false === this.isUpdatePending && (this._$ES = this._$ET());
|
|
251
989
|
}
|
|
252
|
-
P(
|
|
253
|
-
this._$AL.has(
|
|
990
|
+
P(t7, s4, i8) {
|
|
991
|
+
this._$AL.has(t7) || this._$AL.set(t7, s4), true === i8.reflect && this._$Em !== t7 && (this._$Ej ??= /* @__PURE__ */ new Set()).add(t7);
|
|
254
992
|
}
|
|
255
993
|
async _$ET() {
|
|
256
994
|
this.isUpdatePending = true;
|
|
257
995
|
try {
|
|
258
996
|
await this._$ES;
|
|
259
|
-
} catch (
|
|
260
|
-
Promise.reject(
|
|
997
|
+
} catch (t8) {
|
|
998
|
+
Promise.reject(t8);
|
|
261
999
|
}
|
|
262
|
-
const
|
|
263
|
-
return null !=
|
|
1000
|
+
const t7 = this.scheduleUpdate();
|
|
1001
|
+
return null != t7 && await t7, !this.isUpdatePending;
|
|
264
1002
|
}
|
|
265
1003
|
scheduleUpdate() {
|
|
266
1004
|
return this.performUpdate();
|
|
@@ -269,25 +1007,25 @@ var b = class extends HTMLElement {
|
|
|
269
1007
|
if (!this.isUpdatePending) return;
|
|
270
1008
|
if (!this.hasUpdated) {
|
|
271
1009
|
if (this.renderRoot ??= this.createRenderRoot(), this._$Ep) {
|
|
272
|
-
for (const [
|
|
1010
|
+
for (const [t9, s5] of this._$Ep) this[t9] = s5;
|
|
273
1011
|
this._$Ep = void 0;
|
|
274
1012
|
}
|
|
275
|
-
const
|
|
276
|
-
if (
|
|
1013
|
+
const t8 = this.constructor.elementProperties;
|
|
1014
|
+
if (t8.size > 0) for (const [s5, i8] of t8) true !== i8.wrapped || this._$AL.has(s5) || void 0 === this[s5] || this.P(s5, this[s5], i8);
|
|
277
1015
|
}
|
|
278
|
-
let
|
|
279
|
-
const
|
|
1016
|
+
let t7 = false;
|
|
1017
|
+
const s4 = this._$AL;
|
|
280
1018
|
try {
|
|
281
|
-
|
|
282
|
-
} catch (
|
|
283
|
-
throw
|
|
1019
|
+
t7 = this.shouldUpdate(s4), t7 ? (this.willUpdate(s4), this._$EO?.forEach((t8) => t8.hostUpdate?.()), this.update(s4)) : this._$EU();
|
|
1020
|
+
} catch (s5) {
|
|
1021
|
+
throw t7 = false, this._$EU(), s5;
|
|
284
1022
|
}
|
|
285
|
-
|
|
1023
|
+
t7 && this._$AE(s4);
|
|
286
1024
|
}
|
|
287
|
-
willUpdate(
|
|
1025
|
+
willUpdate(t7) {
|
|
288
1026
|
}
|
|
289
|
-
_$AE(
|
|
290
|
-
this._$EO?.forEach((
|
|
1027
|
+
_$AE(t7) {
|
|
1028
|
+
this._$EO?.forEach((t8) => t8.hostUpdated?.()), this.hasUpdated || (this.hasUpdated = true, this.firstUpdated(t7)), this.updated(t7);
|
|
291
1029
|
}
|
|
292
1030
|
_$EU() {
|
|
293
1031
|
this._$AL = /* @__PURE__ */ new Map(), this.isUpdatePending = false;
|
|
@@ -298,111 +1036,111 @@ var b = class extends HTMLElement {
|
|
|
298
1036
|
getUpdateComplete() {
|
|
299
1037
|
return this._$ES;
|
|
300
1038
|
}
|
|
301
|
-
shouldUpdate(
|
|
1039
|
+
shouldUpdate(t7) {
|
|
302
1040
|
return true;
|
|
303
1041
|
}
|
|
304
|
-
update(
|
|
305
|
-
this._$Ej &&= this._$Ej.forEach((
|
|
1042
|
+
update(t7) {
|
|
1043
|
+
this._$Ej &&= this._$Ej.forEach((t8) => this._$EC(t8, this[t8])), this._$EU();
|
|
306
1044
|
}
|
|
307
|
-
updated(
|
|
1045
|
+
updated(t7) {
|
|
308
1046
|
}
|
|
309
|
-
firstUpdated(
|
|
1047
|
+
firstUpdated(t7) {
|
|
310
1048
|
}
|
|
311
1049
|
};
|
|
312
1050
|
b.elementStyles = [], b.shadowRootOptions = { mode: "open" }, b[d("elementProperties")] = /* @__PURE__ */ new Map(), b[d("finalized")] = /* @__PURE__ */ new Map(), p?.({ ReactiveElement: b }), (a.reactiveElementVersions ??= []).push("2.0.4");
|
|
313
1051
|
|
|
314
|
-
//
|
|
315
|
-
var
|
|
316
|
-
var
|
|
317
|
-
var
|
|
318
|
-
var
|
|
319
|
-
var
|
|
320
|
-
var
|
|
321
|
-
var
|
|
322
|
-
var
|
|
323
|
-
var
|
|
324
|
-
var
|
|
325
|
-
var
|
|
326
|
-
var
|
|
327
|
-
var
|
|
328
|
-
var
|
|
329
|
-
var
|
|
330
|
-
var
|
|
331
|
-
var
|
|
1052
|
+
// node_modules/lit-html/lit-html.js
|
|
1053
|
+
var t2 = globalThis;
|
|
1054
|
+
var i3 = t2.trustedTypes;
|
|
1055
|
+
var s2 = i3 ? i3.createPolicy("lit-html", { createHTML: (t7) => t7 }) : void 0;
|
|
1056
|
+
var e3 = "$lit$";
|
|
1057
|
+
var h2 = `lit$${Math.random().toFixed(9).slice(2)}$`;
|
|
1058
|
+
var o3 = "?" + h2;
|
|
1059
|
+
var n3 = `<${o3}>`;
|
|
1060
|
+
var r3 = document;
|
|
1061
|
+
var l2 = () => r3.createComment("");
|
|
1062
|
+
var c3 = (t7) => null === t7 || "object" != typeof t7 && "function" != typeof t7;
|
|
1063
|
+
var a2 = Array.isArray;
|
|
1064
|
+
var u2 = (t7) => a2(t7) || "function" == typeof t7?.[Symbol.iterator];
|
|
1065
|
+
var d2 = "[ \n\f\r]";
|
|
1066
|
+
var f2 = /<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g;
|
|
1067
|
+
var v = /-->/g;
|
|
1068
|
+
var _ = />/g;
|
|
1069
|
+
var m = RegExp(`>|${d2}(?:([^\\s"'>=/]+)(${d2}*=${d2}*(?:[^
|
|
332
1070
|
\f\r"'\`<>=]|("|')|))|$)`, "g");
|
|
333
|
-
var
|
|
334
|
-
var
|
|
335
|
-
var
|
|
336
|
-
var
|
|
337
|
-
var
|
|
338
|
-
var
|
|
339
|
-
var
|
|
340
|
-
var
|
|
341
|
-
var
|
|
342
|
-
var
|
|
343
|
-
var
|
|
344
|
-
function
|
|
345
|
-
if (!
|
|
346
|
-
return void 0 !==
|
|
1071
|
+
var p2 = /'/g;
|
|
1072
|
+
var g = /"/g;
|
|
1073
|
+
var $ = /^(?:script|style|textarea|title)$/i;
|
|
1074
|
+
var y2 = (t7) => (i8, ...s4) => ({ _$litType$: t7, strings: i8, values: s4 });
|
|
1075
|
+
var x = y2(1);
|
|
1076
|
+
var b2 = y2(2);
|
|
1077
|
+
var w = y2(3);
|
|
1078
|
+
var T = Symbol.for("lit-noChange");
|
|
1079
|
+
var E = Symbol.for("lit-nothing");
|
|
1080
|
+
var A = /* @__PURE__ */ new WeakMap();
|
|
1081
|
+
var C = r3.createTreeWalker(r3, 129);
|
|
1082
|
+
function P(t7, i8) {
|
|
1083
|
+
if (!a2(t7) || !t7.hasOwnProperty("raw")) throw Error("invalid template strings array");
|
|
1084
|
+
return void 0 !== s2 ? s2.createHTML(i8) : i8;
|
|
347
1085
|
}
|
|
348
|
-
var
|
|
349
|
-
const
|
|
350
|
-
let
|
|
351
|
-
for (let
|
|
352
|
-
const
|
|
353
|
-
let
|
|
354
|
-
for (;
|
|
355
|
-
const
|
|
356
|
-
|
|
357
|
-
}
|
|
358
|
-
return [
|
|
1086
|
+
var V = (t7, i8) => {
|
|
1087
|
+
const s4 = t7.length - 1, o8 = [];
|
|
1088
|
+
let r8, l5 = 2 === i8 ? "<svg>" : 3 === i8 ? "<math>" : "", c5 = f2;
|
|
1089
|
+
for (let i9 = 0; i9 < s4; i9++) {
|
|
1090
|
+
const s5 = t7[i9];
|
|
1091
|
+
let a4, u5, d4 = -1, y4 = 0;
|
|
1092
|
+
for (; y4 < s5.length && (c5.lastIndex = y4, u5 = c5.exec(s5), null !== u5); ) y4 = c5.lastIndex, c5 === f2 ? "!--" === u5[1] ? c5 = v : void 0 !== u5[1] ? c5 = _ : void 0 !== u5[2] ? ($.test(u5[2]) && (r8 = RegExp("</" + u5[2], "g")), c5 = m) : void 0 !== u5[3] && (c5 = m) : c5 === m ? ">" === u5[0] ? (c5 = r8 ?? f2, d4 = -1) : void 0 === u5[1] ? d4 = -2 : (d4 = c5.lastIndex - u5[2].length, a4 = u5[1], c5 = void 0 === u5[3] ? m : '"' === u5[3] ? g : p2) : c5 === g || c5 === p2 ? c5 = m : c5 === v || c5 === _ ? c5 = f2 : (c5 = m, r8 = void 0);
|
|
1093
|
+
const x3 = c5 === m && t7[i9 + 1].startsWith("/>") ? " " : "";
|
|
1094
|
+
l5 += c5 === f2 ? s5 + n3 : d4 >= 0 ? (o8.push(a4), s5.slice(0, d4) + e3 + s5.slice(d4) + h2 + x3) : s5 + h2 + (-2 === d4 ? i9 : x3);
|
|
1095
|
+
}
|
|
1096
|
+
return [P(t7, l5 + (t7[s4] || "<?>") + (2 === i8 ? "</svg>" : 3 === i8 ? "</math>" : "")), o8];
|
|
359
1097
|
};
|
|
360
|
-
var
|
|
361
|
-
constructor({ strings:
|
|
362
|
-
let
|
|
1098
|
+
var N = class _N {
|
|
1099
|
+
constructor({ strings: t7, _$litType$: s4 }, n7) {
|
|
1100
|
+
let r8;
|
|
363
1101
|
this.parts = [];
|
|
364
|
-
let
|
|
365
|
-
const
|
|
366
|
-
if (this.el =
|
|
367
|
-
const
|
|
368
|
-
|
|
369
|
-
}
|
|
370
|
-
for (; null !== (
|
|
371
|
-
if (1 ===
|
|
372
|
-
if (
|
|
373
|
-
const
|
|
374
|
-
|
|
375
|
-
} else
|
|
376
|
-
if (
|
|
377
|
-
const
|
|
378
|
-
if (
|
|
379
|
-
|
|
380
|
-
for (let
|
|
381
|
-
|
|
1102
|
+
let c5 = 0, a4 = 0;
|
|
1103
|
+
const u5 = t7.length - 1, d4 = this.parts, [f5, v3] = V(t7, s4);
|
|
1104
|
+
if (this.el = _N.createElement(f5, n7), C.currentNode = this.el.content, 2 === s4 || 3 === s4) {
|
|
1105
|
+
const t8 = this.el.content.firstChild;
|
|
1106
|
+
t8.replaceWith(...t8.childNodes);
|
|
1107
|
+
}
|
|
1108
|
+
for (; null !== (r8 = C.nextNode()) && d4.length < u5; ) {
|
|
1109
|
+
if (1 === r8.nodeType) {
|
|
1110
|
+
if (r8.hasAttributes()) for (const t8 of r8.getAttributeNames()) if (t8.endsWith(e3)) {
|
|
1111
|
+
const i8 = v3[a4++], s5 = r8.getAttribute(t8).split(h2), e10 = /([.?@])?(.*)/.exec(i8);
|
|
1112
|
+
d4.push({ type: 1, index: c5, name: e10[2], strings: s5, ctor: "." === e10[1] ? H : "?" === e10[1] ? I : "@" === e10[1] ? L : k }), r8.removeAttribute(t8);
|
|
1113
|
+
} else t8.startsWith(h2) && (d4.push({ type: 6, index: c5 }), r8.removeAttribute(t8));
|
|
1114
|
+
if ($.test(r8.tagName)) {
|
|
1115
|
+
const t8 = r8.textContent.split(h2), s5 = t8.length - 1;
|
|
1116
|
+
if (s5 > 0) {
|
|
1117
|
+
r8.textContent = i3 ? i3.emptyScript : "";
|
|
1118
|
+
for (let i8 = 0; i8 < s5; i8++) r8.append(t8[i8], l2()), C.nextNode(), d4.push({ type: 2, index: ++c5 });
|
|
1119
|
+
r8.append(t8[s5], l2());
|
|
382
1120
|
}
|
|
383
1121
|
}
|
|
384
|
-
} else if (8 ===
|
|
1122
|
+
} else if (8 === r8.nodeType) if (r8.data === o3) d4.push({ type: 2, index: c5 });
|
|
385
1123
|
else {
|
|
386
|
-
let
|
|
387
|
-
for (; -1 !== (
|
|
1124
|
+
let t8 = -1;
|
|
1125
|
+
for (; -1 !== (t8 = r8.data.indexOf(h2, t8 + 1)); ) d4.push({ type: 7, index: c5 }), t8 += h2.length - 1;
|
|
388
1126
|
}
|
|
389
|
-
|
|
1127
|
+
c5++;
|
|
390
1128
|
}
|
|
391
1129
|
}
|
|
392
|
-
static createElement(
|
|
393
|
-
const
|
|
394
|
-
return
|
|
1130
|
+
static createElement(t7, i8) {
|
|
1131
|
+
const s4 = r3.createElement("template");
|
|
1132
|
+
return s4.innerHTML = t7, s4;
|
|
395
1133
|
}
|
|
396
1134
|
};
|
|
397
|
-
function
|
|
398
|
-
if (
|
|
399
|
-
let
|
|
400
|
-
const
|
|
401
|
-
return
|
|
1135
|
+
function S2(t7, i8, s4 = t7, e10) {
|
|
1136
|
+
if (i8 === T) return i8;
|
|
1137
|
+
let h4 = void 0 !== e10 ? s4._$Co?.[e10] : s4._$Cl;
|
|
1138
|
+
const o8 = c3(i8) ? void 0 : i8._$litDirective$;
|
|
1139
|
+
return h4?.constructor !== o8 && (h4?._$AO?.(false), void 0 === o8 ? h4 = void 0 : (h4 = new o8(t7), h4._$AT(t7, s4, e10)), void 0 !== e10 ? (s4._$Co ??= [])[e10] = h4 : s4._$Cl = h4), void 0 !== h4 && (i8 = S2(t7, h4._$AS(t7, i8.values), h4, e10)), i8;
|
|
402
1140
|
}
|
|
403
|
-
var
|
|
404
|
-
constructor(
|
|
405
|
-
this._$AV = [], this._$AN = void 0, this._$AD =
|
|
1141
|
+
var M = class {
|
|
1142
|
+
constructor(t7, i8) {
|
|
1143
|
+
this._$AV = [], this._$AN = void 0, this._$AD = t7, this._$AM = i8;
|
|
406
1144
|
}
|
|
407
1145
|
get parentNode() {
|
|
408
1146
|
return this._$AM.parentNode;
|
|
@@ -410,35 +1148,35 @@ var F = class {
|
|
|
410
1148
|
get _$AU() {
|
|
411
1149
|
return this._$AM._$AU;
|
|
412
1150
|
}
|
|
413
|
-
u(
|
|
414
|
-
const { el: { content:
|
|
415
|
-
|
|
416
|
-
let
|
|
417
|
-
for (; void 0 !==
|
|
418
|
-
if (
|
|
419
|
-
let
|
|
420
|
-
2 ===
|
|
1151
|
+
u(t7) {
|
|
1152
|
+
const { el: { content: i8 }, parts: s4 } = this._$AD, e10 = (t7?.creationScope ?? r3).importNode(i8, true);
|
|
1153
|
+
C.currentNode = e10;
|
|
1154
|
+
let h4 = C.nextNode(), o8 = 0, n7 = 0, l5 = s4[0];
|
|
1155
|
+
for (; void 0 !== l5; ) {
|
|
1156
|
+
if (o8 === l5.index) {
|
|
1157
|
+
let i9;
|
|
1158
|
+
2 === l5.type ? i9 = new R(h4, h4.nextSibling, this, t7) : 1 === l5.type ? i9 = new l5.ctor(h4, l5.name, l5.strings, this, t7) : 6 === l5.type && (i9 = new z(h4, this, t7)), this._$AV.push(i9), l5 = s4[++n7];
|
|
421
1159
|
}
|
|
422
|
-
|
|
1160
|
+
o8 !== l5?.index && (h4 = C.nextNode(), o8++);
|
|
423
1161
|
}
|
|
424
|
-
return
|
|
1162
|
+
return C.currentNode = r3, e10;
|
|
425
1163
|
}
|
|
426
|
-
p(
|
|
427
|
-
let
|
|
428
|
-
for (const
|
|
1164
|
+
p(t7) {
|
|
1165
|
+
let i8 = 0;
|
|
1166
|
+
for (const s4 of this._$AV) void 0 !== s4 && (void 0 !== s4.strings ? (s4._$AI(t7, s4, i8), i8 += s4.strings.length - 2) : s4._$AI(t7[i8])), i8++;
|
|
429
1167
|
}
|
|
430
1168
|
};
|
|
431
|
-
var
|
|
1169
|
+
var R = class _R {
|
|
432
1170
|
get _$AU() {
|
|
433
|
-
return this._$AM?._$AU ?? this.
|
|
1171
|
+
return this._$AM?._$AU ?? this._$Cv;
|
|
434
1172
|
}
|
|
435
|
-
constructor(
|
|
436
|
-
this.type = 2, this._$AH =
|
|
1173
|
+
constructor(t7, i8, s4, e10) {
|
|
1174
|
+
this.type = 2, this._$AH = E, this._$AN = void 0, this._$AA = t7, this._$AB = i8, this._$AM = s4, this.options = e10, this._$Cv = e10?.isConnected ?? true;
|
|
437
1175
|
}
|
|
438
1176
|
get parentNode() {
|
|
439
|
-
let
|
|
440
|
-
const
|
|
441
|
-
return void 0 !==
|
|
1177
|
+
let t7 = this._$AA.parentNode;
|
|
1178
|
+
const i8 = this._$AM;
|
|
1179
|
+
return void 0 !== i8 && 11 === t7?.nodeType && (t7 = i8.parentNode), t7;
|
|
442
1180
|
}
|
|
443
1181
|
get startNode() {
|
|
444
1182
|
return this._$AA;
|
|
@@ -446,233 +1184,233 @@ var et = class _et2 {
|
|
|
446
1184
|
get endNode() {
|
|
447
1185
|
return this._$AB;
|
|
448
1186
|
}
|
|
449
|
-
_$AI(
|
|
450
|
-
|
|
1187
|
+
_$AI(t7, i8 = this) {
|
|
1188
|
+
t7 = S2(this, t7, i8), c3(t7) ? t7 === E || null == t7 || "" === t7 ? (this._$AH !== E && this._$AR(), this._$AH = E) : t7 !== this._$AH && t7 !== T && this._(t7) : void 0 !== t7._$litType$ ? this.$(t7) : void 0 !== t7.nodeType ? this.T(t7) : u2(t7) ? this.k(t7) : this._(t7);
|
|
451
1189
|
}
|
|
452
|
-
O(
|
|
453
|
-
return this._$AA.parentNode.insertBefore(
|
|
1190
|
+
O(t7) {
|
|
1191
|
+
return this._$AA.parentNode.insertBefore(t7, this._$AB);
|
|
454
1192
|
}
|
|
455
|
-
T(
|
|
456
|
-
this._$AH !==
|
|
1193
|
+
T(t7) {
|
|
1194
|
+
this._$AH !== t7 && (this._$AR(), this._$AH = this.O(t7));
|
|
457
1195
|
}
|
|
458
|
-
_(
|
|
459
|
-
this._$AH !==
|
|
1196
|
+
_(t7) {
|
|
1197
|
+
this._$AH !== E && c3(this._$AH) ? this._$AA.nextSibling.data = t7 : this.T(r3.createTextNode(t7)), this._$AH = t7;
|
|
460
1198
|
}
|
|
461
|
-
$(
|
|
462
|
-
const { values:
|
|
463
|
-
if (this._$AH?._$AD ===
|
|
1199
|
+
$(t7) {
|
|
1200
|
+
const { values: i8, _$litType$: s4 } = t7, e10 = "number" == typeof s4 ? this._$AC(t7) : (void 0 === s4.el && (s4.el = N.createElement(P(s4.h, s4.h[0]), this.options)), s4);
|
|
1201
|
+
if (this._$AH?._$AD === e10) this._$AH.p(i8);
|
|
464
1202
|
else {
|
|
465
|
-
const
|
|
466
|
-
|
|
1203
|
+
const t8 = new M(e10, this), s5 = t8.u(this.options);
|
|
1204
|
+
t8.p(i8), this.T(s5), this._$AH = t8;
|
|
467
1205
|
}
|
|
468
1206
|
}
|
|
469
|
-
_$AC(
|
|
470
|
-
let
|
|
471
|
-
return void 0 ===
|
|
472
|
-
}
|
|
473
|
-
k(
|
|
474
|
-
|
|
475
|
-
const
|
|
476
|
-
let
|
|
477
|
-
for (const
|
|
478
|
-
|
|
479
|
-
}
|
|
480
|
-
_$AR(
|
|
481
|
-
for (this._$AP?.(false, true,
|
|
482
|
-
const
|
|
483
|
-
|
|
1207
|
+
_$AC(t7) {
|
|
1208
|
+
let i8 = A.get(t7.strings);
|
|
1209
|
+
return void 0 === i8 && A.set(t7.strings, i8 = new N(t7)), i8;
|
|
1210
|
+
}
|
|
1211
|
+
k(t7) {
|
|
1212
|
+
a2(this._$AH) || (this._$AH = [], this._$AR());
|
|
1213
|
+
const i8 = this._$AH;
|
|
1214
|
+
let s4, e10 = 0;
|
|
1215
|
+
for (const h4 of t7) e10 === i8.length ? i8.push(s4 = new _R(this.O(l2()), this.O(l2()), this, this.options)) : s4 = i8[e10], s4._$AI(h4), e10++;
|
|
1216
|
+
e10 < i8.length && (this._$AR(s4 && s4._$AB.nextSibling, e10), i8.length = e10);
|
|
1217
|
+
}
|
|
1218
|
+
_$AR(t7 = this._$AA.nextSibling, i8) {
|
|
1219
|
+
for (this._$AP?.(false, true, i8); t7 && t7 !== this._$AB; ) {
|
|
1220
|
+
const i9 = t7.nextSibling;
|
|
1221
|
+
t7.remove(), t7 = i9;
|
|
484
1222
|
}
|
|
485
1223
|
}
|
|
486
|
-
setConnected(
|
|
487
|
-
void 0 === this._$AM && (this.
|
|
1224
|
+
setConnected(t7) {
|
|
1225
|
+
void 0 === this._$AM && (this._$Cv = t7, this._$AP?.(t7));
|
|
488
1226
|
}
|
|
489
1227
|
};
|
|
490
|
-
var
|
|
1228
|
+
var k = class {
|
|
491
1229
|
get tagName() {
|
|
492
1230
|
return this.element.tagName;
|
|
493
1231
|
}
|
|
494
1232
|
get _$AU() {
|
|
495
1233
|
return this._$AM._$AU;
|
|
496
1234
|
}
|
|
497
|
-
constructor(
|
|
498
|
-
this.type = 1, this._$AH =
|
|
1235
|
+
constructor(t7, i8, s4, e10, h4) {
|
|
1236
|
+
this.type = 1, this._$AH = E, this._$AN = void 0, this.element = t7, this.name = i8, this._$AM = e10, this.options = h4, s4.length > 2 || "" !== s4[0] || "" !== s4[1] ? (this._$AH = Array(s4.length - 1).fill(new String()), this.strings = s4) : this._$AH = E;
|
|
499
1237
|
}
|
|
500
|
-
_$AI(
|
|
501
|
-
const
|
|
502
|
-
let
|
|
503
|
-
if (void 0 ===
|
|
1238
|
+
_$AI(t7, i8 = this, s4, e10) {
|
|
1239
|
+
const h4 = this.strings;
|
|
1240
|
+
let o8 = false;
|
|
1241
|
+
if (void 0 === h4) t7 = S2(this, t7, i8, 0), o8 = !c3(t7) || t7 !== this._$AH && t7 !== T, o8 && (this._$AH = t7);
|
|
504
1242
|
else {
|
|
505
|
-
const
|
|
506
|
-
let
|
|
507
|
-
for (
|
|
1243
|
+
const e11 = t7;
|
|
1244
|
+
let n7, r8;
|
|
1245
|
+
for (t7 = h4[0], n7 = 0; n7 < h4.length - 1; n7++) r8 = S2(this, e11[s4 + n7], i8, n7), r8 === T && (r8 = this._$AH[n7]), o8 ||= !c3(r8) || r8 !== this._$AH[n7], r8 === E ? t7 = E : t7 !== E && (t7 += (r8 ?? "") + h4[n7 + 1]), this._$AH[n7] = r8;
|
|
508
1246
|
}
|
|
509
|
-
|
|
1247
|
+
o8 && !e10 && this.j(t7);
|
|
510
1248
|
}
|
|
511
|
-
j(
|
|
512
|
-
|
|
1249
|
+
j(t7) {
|
|
1250
|
+
t7 === E ? this.element.removeAttribute(this.name) : this.element.setAttribute(this.name, t7 ?? "");
|
|
513
1251
|
}
|
|
514
1252
|
};
|
|
515
|
-
var
|
|
1253
|
+
var H = class extends k {
|
|
516
1254
|
constructor() {
|
|
517
1255
|
super(...arguments), this.type = 3;
|
|
518
1256
|
}
|
|
519
|
-
j(
|
|
520
|
-
this.element[this.name] =
|
|
1257
|
+
j(t7) {
|
|
1258
|
+
this.element[this.name] = t7 === E ? void 0 : t7;
|
|
521
1259
|
}
|
|
522
1260
|
};
|
|
523
|
-
var
|
|
1261
|
+
var I = class extends k {
|
|
524
1262
|
constructor() {
|
|
525
1263
|
super(...arguments), this.type = 4;
|
|
526
1264
|
}
|
|
527
|
-
j(
|
|
528
|
-
this.element.toggleAttribute(this.name, !!
|
|
1265
|
+
j(t7) {
|
|
1266
|
+
this.element.toggleAttribute(this.name, !!t7 && t7 !== E);
|
|
529
1267
|
}
|
|
530
1268
|
};
|
|
531
|
-
var
|
|
532
|
-
constructor(
|
|
533
|
-
super(
|
|
1269
|
+
var L = class extends k {
|
|
1270
|
+
constructor(t7, i8, s4, e10, h4) {
|
|
1271
|
+
super(t7, i8, s4, e10, h4), this.type = 5;
|
|
534
1272
|
}
|
|
535
|
-
_$AI(
|
|
536
|
-
if ((
|
|
537
|
-
const
|
|
538
|
-
|
|
1273
|
+
_$AI(t7, i8 = this) {
|
|
1274
|
+
if ((t7 = S2(this, t7, i8, 0) ?? E) === T) return;
|
|
1275
|
+
const s4 = this._$AH, e10 = t7 === E && s4 !== E || t7.capture !== s4.capture || t7.once !== s4.once || t7.passive !== s4.passive, h4 = t7 !== E && (s4 === E || e10);
|
|
1276
|
+
e10 && this.element.removeEventListener(this.name, this, s4), h4 && this.element.addEventListener(this.name, this, t7), this._$AH = t7;
|
|
539
1277
|
}
|
|
540
|
-
handleEvent(
|
|
541
|
-
"function" == typeof this._$AH ? this._$AH.call(this.options?.host ?? this.element,
|
|
1278
|
+
handleEvent(t7) {
|
|
1279
|
+
"function" == typeof this._$AH ? this._$AH.call(this.options?.host ?? this.element, t7) : this._$AH.handleEvent(t7);
|
|
542
1280
|
}
|
|
543
1281
|
};
|
|
544
|
-
var
|
|
545
|
-
constructor(
|
|
546
|
-
this.element =
|
|
1282
|
+
var z = class {
|
|
1283
|
+
constructor(t7, i8, s4) {
|
|
1284
|
+
this.element = t7, this.type = 6, this._$AN = void 0, this._$AM = i8, this.options = s4;
|
|
547
1285
|
}
|
|
548
1286
|
get _$AU() {
|
|
549
1287
|
return this._$AM._$AU;
|
|
550
1288
|
}
|
|
551
|
-
_$AI(
|
|
552
|
-
|
|
1289
|
+
_$AI(t7) {
|
|
1290
|
+
S2(this, t7);
|
|
553
1291
|
}
|
|
554
1292
|
};
|
|
555
|
-
var
|
|
556
|
-
var
|
|
557
|
-
|
|
558
|
-
var
|
|
559
|
-
const
|
|
560
|
-
let
|
|
561
|
-
if (void 0 ===
|
|
562
|
-
const
|
|
563
|
-
|
|
564
|
-
}
|
|
565
|
-
return
|
|
1293
|
+
var Z = { M: e3, P: h2, A: o3, C: 1, L: V, R: M, D: u2, V: S2, I: R, H: k, N: I, U: L, B: H, F: z };
|
|
1294
|
+
var j = t2.litHtmlPolyfillSupport;
|
|
1295
|
+
j?.(N, R), (t2.litHtmlVersions ??= []).push("3.2.1");
|
|
1296
|
+
var B = (t7, i8, s4) => {
|
|
1297
|
+
const e10 = s4?.renderBefore ?? i8;
|
|
1298
|
+
let h4 = e10._$litPart$;
|
|
1299
|
+
if (void 0 === h4) {
|
|
1300
|
+
const t8 = s4?.renderBefore ?? null;
|
|
1301
|
+
e10._$litPart$ = h4 = new R(i8.insertBefore(l2(), t8), t8, void 0, s4 ?? {});
|
|
1302
|
+
}
|
|
1303
|
+
return h4._$AI(t7), h4;
|
|
566
1304
|
};
|
|
567
1305
|
|
|
568
|
-
//
|
|
569
|
-
var
|
|
1306
|
+
// node_modules/lit-element/lit-element.js
|
|
1307
|
+
var r4 = class extends b {
|
|
570
1308
|
constructor() {
|
|
571
|
-
super(...arguments), this.renderOptions = { host: this }, this.
|
|
1309
|
+
super(...arguments), this.renderOptions = { host: this }, this._$Do = void 0;
|
|
572
1310
|
}
|
|
573
1311
|
createRenderRoot() {
|
|
574
|
-
const
|
|
575
|
-
return this.renderOptions.renderBefore ??=
|
|
1312
|
+
const t7 = super.createRenderRoot();
|
|
1313
|
+
return this.renderOptions.renderBefore ??= t7.firstChild, t7;
|
|
576
1314
|
}
|
|
577
|
-
update(
|
|
578
|
-
const
|
|
579
|
-
this.hasUpdated || (this.renderOptions.isConnected = this.isConnected), super.update(
|
|
1315
|
+
update(t7) {
|
|
1316
|
+
const s4 = this.render();
|
|
1317
|
+
this.hasUpdated || (this.renderOptions.isConnected = this.isConnected), super.update(t7), this._$Do = B(s4, this.renderRoot, this.renderOptions);
|
|
580
1318
|
}
|
|
581
1319
|
connectedCallback() {
|
|
582
|
-
super.connectedCallback(), this.
|
|
1320
|
+
super.connectedCallback(), this._$Do?.setConnected(true);
|
|
583
1321
|
}
|
|
584
1322
|
disconnectedCallback() {
|
|
585
|
-
super.disconnectedCallback(), this.
|
|
1323
|
+
super.disconnectedCallback(), this._$Do?.setConnected(false);
|
|
586
1324
|
}
|
|
587
1325
|
render() {
|
|
588
|
-
return
|
|
1326
|
+
return T;
|
|
589
1327
|
}
|
|
590
1328
|
};
|
|
591
|
-
|
|
592
|
-
var
|
|
593
|
-
|
|
594
|
-
(globalThis.litElementVersions ??= []).push("4.1.
|
|
1329
|
+
r4._$litElement$ = true, r4["finalized"] = true, globalThis.litElementHydrateSupport?.({ LitElement: r4 });
|
|
1330
|
+
var i4 = globalThis.litElementPolyfillSupport;
|
|
1331
|
+
i4?.({ LitElement: r4 });
|
|
1332
|
+
(globalThis.litElementVersions ??= []).push("4.1.1");
|
|
595
1333
|
|
|
596
|
-
//
|
|
597
|
-
var
|
|
598
|
-
var
|
|
599
|
-
var
|
|
600
|
-
constructor(
|
|
1334
|
+
// node_modules/lit-html/directive.js
|
|
1335
|
+
var t3 = { ATTRIBUTE: 1, CHILD: 2, PROPERTY: 3, BOOLEAN_ATTRIBUTE: 4, EVENT: 5, ELEMENT: 6 };
|
|
1336
|
+
var e4 = (t7) => (...e10) => ({ _$litDirective$: t7, values: e10 });
|
|
1337
|
+
var i5 = class {
|
|
1338
|
+
constructor(t7) {
|
|
601
1339
|
}
|
|
602
1340
|
get _$AU() {
|
|
603
1341
|
return this._$AM._$AU;
|
|
604
1342
|
}
|
|
605
|
-
_$AT(
|
|
606
|
-
this.
|
|
1343
|
+
_$AT(t7, e10, i8) {
|
|
1344
|
+
this._$Ct = t7, this._$AM = e10, this._$Ci = i8;
|
|
607
1345
|
}
|
|
608
|
-
_$AS(
|
|
609
|
-
return this.update(
|
|
1346
|
+
_$AS(t7, e10) {
|
|
1347
|
+
return this.update(t7, e10);
|
|
610
1348
|
}
|
|
611
|
-
update(
|
|
612
|
-
return this.render(...
|
|
1349
|
+
update(t7, e10) {
|
|
1350
|
+
return this.render(...e10);
|
|
613
1351
|
}
|
|
614
1352
|
};
|
|
615
1353
|
|
|
616
|
-
//
|
|
617
|
-
var
|
|
618
|
-
var
|
|
619
|
-
var
|
|
620
|
-
constructor(
|
|
621
|
-
if (super(
|
|
622
|
-
}
|
|
623
|
-
render(
|
|
624
|
-
return Object.keys(
|
|
625
|
-
const
|
|
626
|
-
return null ==
|
|
1354
|
+
// node_modules/lit-html/directives/style-map.js
|
|
1355
|
+
var n4 = "important";
|
|
1356
|
+
var i6 = " !" + n4;
|
|
1357
|
+
var o4 = e4(class extends i5 {
|
|
1358
|
+
constructor(t7) {
|
|
1359
|
+
if (super(t7), t7.type !== t3.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.");
|
|
1360
|
+
}
|
|
1361
|
+
render(t7) {
|
|
1362
|
+
return Object.keys(t7).reduce((e10, r8) => {
|
|
1363
|
+
const s4 = t7[r8];
|
|
1364
|
+
return null == s4 ? e10 : e10 + `${r8 = r8.includes("-") ? r8 : r8.replace(/(?:^(webkit|moz|ms|o)|)(?=[A-Z])/g, "-$&").toLowerCase()}:${s4};`;
|
|
627
1365
|
}, "");
|
|
628
1366
|
}
|
|
629
|
-
update(
|
|
630
|
-
const { style:
|
|
631
|
-
if (void 0 === this.ft) return this.ft = new Set(Object.keys(
|
|
632
|
-
for (const
|
|
633
|
-
for (const
|
|
634
|
-
const
|
|
635
|
-
if (null !=
|
|
636
|
-
this.ft.add(
|
|
637
|
-
const
|
|
638
|
-
|
|
1367
|
+
update(e10, [r8]) {
|
|
1368
|
+
const { style: s4 } = e10.element;
|
|
1369
|
+
if (void 0 === this.ft) return this.ft = new Set(Object.keys(r8)), this.render(r8);
|
|
1370
|
+
for (const t7 of this.ft) null == r8[t7] && (this.ft.delete(t7), t7.includes("-") ? s4.removeProperty(t7) : s4[t7] = null);
|
|
1371
|
+
for (const t7 in r8) {
|
|
1372
|
+
const e11 = r8[t7];
|
|
1373
|
+
if (null != e11) {
|
|
1374
|
+
this.ft.add(t7);
|
|
1375
|
+
const r9 = "string" == typeof e11 && e11.endsWith(i6);
|
|
1376
|
+
t7.includes("-") || r9 ? s4.setProperty(t7, r9 ? e11.slice(0, -11) : e11, r9 ? n4 : "") : s4[t7] = e11;
|
|
639
1377
|
}
|
|
640
1378
|
}
|
|
641
|
-
return
|
|
1379
|
+
return T;
|
|
642
1380
|
}
|
|
643
1381
|
});
|
|
644
1382
|
|
|
645
|
-
//
|
|
646
|
-
var
|
|
647
|
-
constructor(
|
|
648
|
-
if (super(
|
|
1383
|
+
// node_modules/lit-html/directives/class-map.js
|
|
1384
|
+
var e5 = e4(class extends i5 {
|
|
1385
|
+
constructor(t7) {
|
|
1386
|
+
if (super(t7), t7.type !== t3.ATTRIBUTE || "class" !== t7.name || t7.strings?.length > 2) throw Error("`classMap()` can only be used in the `class` attribute and must be the only part in the attribute.");
|
|
649
1387
|
}
|
|
650
|
-
render(
|
|
651
|
-
return " " + Object.keys(
|
|
1388
|
+
render(t7) {
|
|
1389
|
+
return " " + Object.keys(t7).filter((s4) => t7[s4]).join(" ") + " ";
|
|
652
1390
|
}
|
|
653
|
-
update(
|
|
1391
|
+
update(s4, [i8]) {
|
|
654
1392
|
if (void 0 === this.st) {
|
|
655
|
-
this.st = /* @__PURE__ */ new Set(), void 0 !==
|
|
656
|
-
for (const
|
|
657
|
-
return this.render(
|
|
1393
|
+
this.st = /* @__PURE__ */ new Set(), void 0 !== s4.strings && (this.nt = new Set(s4.strings.join(" ").split(/\s/).filter((t7) => "" !== t7)));
|
|
1394
|
+
for (const t7 in i8) i8[t7] && !this.nt?.has(t7) && this.st.add(t7);
|
|
1395
|
+
return this.render(i8);
|
|
658
1396
|
}
|
|
659
|
-
const
|
|
660
|
-
for (const
|
|
661
|
-
for (const
|
|
662
|
-
const
|
|
663
|
-
|
|
1397
|
+
const r8 = s4.element.classList;
|
|
1398
|
+
for (const t7 of this.st) t7 in i8 || (r8.remove(t7), this.st.delete(t7));
|
|
1399
|
+
for (const t7 in i8) {
|
|
1400
|
+
const s5 = !!i8[t7];
|
|
1401
|
+
s5 === this.st.has(t7) || this.nt?.has(t7) || (s5 ? (r8.add(t7), this.st.add(t7)) : (r8.remove(t7), this.st.delete(t7)));
|
|
664
1402
|
}
|
|
665
|
-
return
|
|
1403
|
+
return T;
|
|
666
1404
|
}
|
|
667
1405
|
});
|
|
668
1406
|
|
|
669
|
-
//
|
|
1407
|
+
// node_modules/@webwriter/lit/index.js
|
|
670
1408
|
var __create2 = Object.create;
|
|
671
1409
|
var __defProp2 = Object.defineProperty;
|
|
672
1410
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
|
673
1411
|
var __knownSymbol2 = (name, symbol) => (symbol = Symbol[name]) ? symbol : Symbol.for("Symbol." + name);
|
|
674
|
-
var __typeError2 = (
|
|
675
|
-
throw TypeError(
|
|
1412
|
+
var __typeError2 = (msg2) => {
|
|
1413
|
+
throw TypeError(msg2);
|
|
676
1414
|
};
|
|
677
1415
|
var __defNormalProp2 = (obj, key, value) => key in obj ? __defProp2(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
678
1416
|
var __name2 = (target, value) => __defProp2(target, "name", { value, configurable: true });
|
|
@@ -710,27 +1448,27 @@ var __decorateElement2 = (array, flags, name, decorators, target, extra) => {
|
|
|
710
1448
|
return k22 || __decoratorMetadata2(array, target), desc && __defProp2(target, name, desc), p22 ? k22 ^ 4 ? extra : desc : target;
|
|
711
1449
|
};
|
|
712
1450
|
var __publicField2 = (obj, key, value) => __defNormalProp2(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
713
|
-
var __accessCheck2 = (obj, member,
|
|
1451
|
+
var __accessCheck2 = (obj, member, msg2) => member.has(obj) || __typeError2("Cannot " + msg2);
|
|
714
1452
|
var __privateIn2 = (member, obj) => Object(obj) !== obj ? __typeError2('Cannot use the "in" operator on this value') : member.has(obj);
|
|
715
1453
|
var __privateGet2 = (obj, member, getter) => (__accessCheck2(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
|
|
716
1454
|
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);
|
|
717
1455
|
var __privateSet2 = (obj, member, value, setter) => (__accessCheck2(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value);
|
|
718
1456
|
var __privateMethod2 = (obj, member, method) => (__accessCheck2(obj, member, "access private method"), method);
|
|
719
|
-
var
|
|
720
|
-
var
|
|
721
|
-
var
|
|
722
|
-
var
|
|
723
|
-
var
|
|
1457
|
+
var t4 = globalThis;
|
|
1458
|
+
var e6 = t4.ShadowRoot && (void 0 === t4.ShadyCSS || t4.ShadyCSS.nativeShadow) && "adoptedStyleSheets" in Document.prototype && "replace" in CSSStyleSheet.prototype;
|
|
1459
|
+
var s3 = Symbol();
|
|
1460
|
+
var o5 = /* @__PURE__ */ new WeakMap();
|
|
1461
|
+
var n5 = class {
|
|
724
1462
|
constructor(t22, e42, o42) {
|
|
725
|
-
if (this._$cssResult$ = true, o42 !==
|
|
1463
|
+
if (this._$cssResult$ = true, o42 !== s3) throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");
|
|
726
1464
|
this.cssText = t22, this.t = e42;
|
|
727
1465
|
}
|
|
728
1466
|
get styleSheet() {
|
|
729
1467
|
let t22 = this.o;
|
|
730
1468
|
const s22 = this.t;
|
|
731
|
-
if (
|
|
1469
|
+
if (e6 && void 0 === t22) {
|
|
732
1470
|
const e42 = void 0 !== s22 && 1 === s22.length;
|
|
733
|
-
e42 && (t22 =
|
|
1471
|
+
e42 && (t22 = o5.get(s22)), void 0 === t22 && ((this.o = t22 = new CSSStyleSheet()).replaceSync(this.cssText), e42 && o5.set(s22, t22));
|
|
734
1472
|
}
|
|
735
1473
|
return t22;
|
|
736
1474
|
}
|
|
@@ -738,29 +1476,29 @@ var n4 = class {
|
|
|
738
1476
|
return this.cssText;
|
|
739
1477
|
}
|
|
740
1478
|
};
|
|
741
|
-
var
|
|
1479
|
+
var r5 = (t22) => new n5("string" == typeof t22 ? t22 : t22 + "", void 0, s3);
|
|
742
1480
|
var S3 = (s22, o42) => {
|
|
743
|
-
if (
|
|
1481
|
+
if (e6) s22.adoptedStyleSheets = o42.map((t22) => t22 instanceof CSSStyleSheet ? t22 : t22.styleSheet);
|
|
744
1482
|
else for (const e42 of o42) {
|
|
745
|
-
const
|
|
746
|
-
void 0 !== n52 &&
|
|
1483
|
+
const o52 = document.createElement("style"), n52 = t4.litNonce;
|
|
1484
|
+
void 0 !== n52 && o52.setAttribute("nonce", n52), o52.textContent = e42.cssText, s22.appendChild(o52);
|
|
747
1485
|
}
|
|
748
1486
|
};
|
|
749
|
-
var c4 =
|
|
1487
|
+
var c4 = e6 ? (t22) => t22 : (t22) => t22 instanceof CSSStyleSheet ? ((t32) => {
|
|
750
1488
|
let e42 = "";
|
|
751
1489
|
for (const s22 of t32.cssRules) e42 += s22.cssText;
|
|
752
|
-
return
|
|
1490
|
+
return r5(e42);
|
|
753
1491
|
})(t22) : t22;
|
|
754
|
-
var { is: i22, defineProperty: e22, getOwnPropertyDescriptor: r22, getOwnPropertyNames:
|
|
755
|
-
var
|
|
756
|
-
var c22 =
|
|
757
|
-
var
|
|
758
|
-
var
|
|
759
|
-
var
|
|
760
|
-
var
|
|
1492
|
+
var { is: i22, defineProperty: e22, getOwnPropertyDescriptor: r22, getOwnPropertyNames: h3, getOwnPropertySymbols: o22, getPrototypeOf: n22 } = Object;
|
|
1493
|
+
var a3 = globalThis;
|
|
1494
|
+
var c22 = a3.trustedTypes;
|
|
1495
|
+
var l3 = c22 ? c22.emptyScript : "";
|
|
1496
|
+
var p3 = a3.reactiveElementPolyfillSupport;
|
|
1497
|
+
var d3 = (t22, s22) => t22;
|
|
1498
|
+
var u3 = { toAttribute(t22, s22) {
|
|
761
1499
|
switch (s22) {
|
|
762
1500
|
case Boolean:
|
|
763
|
-
t22 = t22 ?
|
|
1501
|
+
t22 = t22 ? l3 : null;
|
|
764
1502
|
break;
|
|
765
1503
|
case Object:
|
|
766
1504
|
case Array:
|
|
@@ -786,47 +1524,47 @@ var u2 = { toAttribute(t22, s22) {
|
|
|
786
1524
|
}
|
|
787
1525
|
return i32;
|
|
788
1526
|
} };
|
|
789
|
-
var
|
|
790
|
-
var
|
|
791
|
-
Symbol.metadata ??= Symbol("metadata"),
|
|
792
|
-
var
|
|
1527
|
+
var f3 = (t22, s22) => !i22(t22, s22);
|
|
1528
|
+
var y3 = { attribute: true, type: String, converter: u3, reflect: false, hasChanged: f3 };
|
|
1529
|
+
Symbol.metadata ??= Symbol("metadata"), a3.litPropertyMetadata ??= /* @__PURE__ */ new WeakMap();
|
|
1530
|
+
var b3 = class extends HTMLElement {
|
|
793
1531
|
static addInitializer(t22) {
|
|
794
1532
|
this._$Ei(), (this.l ??= []).push(t22);
|
|
795
1533
|
}
|
|
796
1534
|
static get observedAttributes() {
|
|
797
1535
|
return this.finalize(), this._$Eh && [...this._$Eh.keys()];
|
|
798
1536
|
}
|
|
799
|
-
static createProperty(t22, s22 =
|
|
1537
|
+
static createProperty(t22, s22 = y3) {
|
|
800
1538
|
if (s22.state && (s22.attribute = false), this._$Ei(), this.elementProperties.set(t22, s22), !s22.noAccessor) {
|
|
801
1539
|
const i32 = Symbol(), r42 = this.getPropertyDescriptor(t22, i32, s22);
|
|
802
1540
|
void 0 !== r42 && e22(this.prototype, t22, r42);
|
|
803
1541
|
}
|
|
804
1542
|
}
|
|
805
1543
|
static getPropertyDescriptor(t22, s22, i32) {
|
|
806
|
-
const { get: e42, set:
|
|
1544
|
+
const { get: e42, set: h4 } = r22(this.prototype, t22) ?? { get() {
|
|
807
1545
|
return this[s22];
|
|
808
1546
|
}, set(t32) {
|
|
809
1547
|
this[s22] = t32;
|
|
810
1548
|
} };
|
|
811
1549
|
return { get() {
|
|
812
1550
|
return e42?.call(this);
|
|
813
|
-
}, set(
|
|
1551
|
+
}, set(s32) {
|
|
814
1552
|
const r42 = e42?.call(this);
|
|
815
|
-
|
|
1553
|
+
h4.call(this, s32), this.requestUpdate(t22, r42, i32);
|
|
816
1554
|
}, configurable: true, enumerable: true };
|
|
817
1555
|
}
|
|
818
1556
|
static getPropertyOptions(t22) {
|
|
819
|
-
return this.elementProperties.get(t22) ??
|
|
1557
|
+
return this.elementProperties.get(t22) ?? y3;
|
|
820
1558
|
}
|
|
821
1559
|
static _$Ei() {
|
|
822
|
-
if (this.hasOwnProperty(
|
|
1560
|
+
if (this.hasOwnProperty(d3("elementProperties"))) return;
|
|
823
1561
|
const t22 = n22(this);
|
|
824
1562
|
t22.finalize(), void 0 !== t22.l && (this.l = [...t22.l]), this.elementProperties = new Map(t22.elementProperties);
|
|
825
1563
|
}
|
|
826
1564
|
static finalize() {
|
|
827
|
-
if (this.hasOwnProperty(
|
|
828
|
-
if (this.finalized = true, this._$Ei(), this.hasOwnProperty(
|
|
829
|
-
const t32 = this.properties, s22 = [...
|
|
1565
|
+
if (this.hasOwnProperty(d3("finalized"))) return;
|
|
1566
|
+
if (this.finalized = true, this._$Ei(), this.hasOwnProperty(d3("properties"))) {
|
|
1567
|
+
const t32 = this.properties, s22 = [...h3(t32), ...o22(t32)];
|
|
830
1568
|
for (const i32 of s22) this.createProperty(i32, t32[i32]);
|
|
831
1569
|
}
|
|
832
1570
|
const t22 = this[Symbol.metadata];
|
|
@@ -845,7 +1583,7 @@ var b2 = class extends HTMLElement {
|
|
|
845
1583
|
const i32 = [];
|
|
846
1584
|
if (Array.isArray(s22)) {
|
|
847
1585
|
const e42 = new Set(s22.flat(1 / 0).reverse());
|
|
848
|
-
for (const
|
|
1586
|
+
for (const s32 of e42) i32.unshift(c4(s32));
|
|
849
1587
|
} else void 0 !== s22 && i32.push(c4(s22));
|
|
850
1588
|
return i32;
|
|
851
1589
|
}
|
|
@@ -888,20 +1626,20 @@ var b2 = class extends HTMLElement {
|
|
|
888
1626
|
_$EC(t22, s22) {
|
|
889
1627
|
const i32 = this.constructor.elementProperties.get(t22), e42 = this.constructor._$Eu(t22, i32);
|
|
890
1628
|
if (void 0 !== e42 && true === i32.reflect) {
|
|
891
|
-
const r42 = (void 0 !== i32.converter?.toAttribute ? i32.converter :
|
|
1629
|
+
const r42 = (void 0 !== i32.converter?.toAttribute ? i32.converter : u3).toAttribute(s22, i32.type);
|
|
892
1630
|
this._$Em = t22, null == r42 ? this.removeAttribute(e42) : this.setAttribute(e42, r42), this._$Em = null;
|
|
893
1631
|
}
|
|
894
1632
|
}
|
|
895
1633
|
_$AK(t22, s22) {
|
|
896
1634
|
const i32 = this.constructor, e42 = i32._$Eh.get(t22);
|
|
897
1635
|
if (void 0 !== e42 && this._$Em !== e42) {
|
|
898
|
-
const t32 = i32.getPropertyOptions(e42), r42 = "function" == typeof t32.converter ? { fromAttribute: t32.converter } : void 0 !== t32.converter?.fromAttribute ? t32.converter :
|
|
1636
|
+
const t32 = i32.getPropertyOptions(e42), r42 = "function" == typeof t32.converter ? { fromAttribute: t32.converter } : void 0 !== t32.converter?.fromAttribute ? t32.converter : u3;
|
|
899
1637
|
this._$Em = e42, this[e42] = r42.fromAttribute(s22, t32.type), this._$Em = null;
|
|
900
1638
|
}
|
|
901
1639
|
}
|
|
902
1640
|
requestUpdate(t22, s22, i32) {
|
|
903
1641
|
if (void 0 !== t22) {
|
|
904
|
-
if (i32 ??= this.constructor.getPropertyOptions(t22), !(i32.hasChanged ??
|
|
1642
|
+
if (i32 ??= this.constructor.getPropertyOptions(t22), !(i32.hasChanged ?? f3)(this[t22], s22)) return;
|
|
905
1643
|
this.P(t22, s22, i32);
|
|
906
1644
|
}
|
|
907
1645
|
false === this.isUpdatePending && (this._$ES = this._$ET());
|
|
@@ -926,18 +1664,18 @@ var b2 = class extends HTMLElement {
|
|
|
926
1664
|
if (!this.isUpdatePending) return;
|
|
927
1665
|
if (!this.hasUpdated) {
|
|
928
1666
|
if (this.renderRoot ??= this.createRenderRoot(), this._$Ep) {
|
|
929
|
-
for (const [t42,
|
|
1667
|
+
for (const [t42, s32] of this._$Ep) this[t42] = s32;
|
|
930
1668
|
this._$Ep = void 0;
|
|
931
1669
|
}
|
|
932
1670
|
const t32 = this.constructor.elementProperties;
|
|
933
|
-
if (t32.size > 0) for (const [
|
|
1671
|
+
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);
|
|
934
1672
|
}
|
|
935
1673
|
let t22 = false;
|
|
936
1674
|
const s22 = this._$AL;
|
|
937
1675
|
try {
|
|
938
1676
|
t22 = this.shouldUpdate(s22), t22 ? (this.willUpdate(s22), this._$EO?.forEach((t32) => t32.hostUpdate?.()), this.update(s22)) : this._$EU();
|
|
939
|
-
} catch (
|
|
940
|
-
throw t22 = false, this._$EU(),
|
|
1677
|
+
} catch (s32) {
|
|
1678
|
+
throw t22 = false, this._$EU(), s32;
|
|
941
1679
|
}
|
|
942
1680
|
t22 && this._$AE(s22);
|
|
943
1681
|
}
|
|
@@ -966,7 +1704,7 @@ var b2 = class extends HTMLElement {
|
|
|
966
1704
|
firstUpdated(t22) {
|
|
967
1705
|
}
|
|
968
1706
|
};
|
|
969
|
-
|
|
1707
|
+
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");
|
|
970
1708
|
var n32 = globalThis;
|
|
971
1709
|
var c32 = n32.trustedTypes;
|
|
972
1710
|
var h22 = c32 ? c32.createPolicy("lit-html", { createHTML: (t22) => t22 }) : void 0;
|
|
@@ -975,40 +1713,40 @@ var v2 = `lit$${Math.random().toFixed(9).slice(2)}$`;
|
|
|
975
1713
|
var m2 = "?" + v2;
|
|
976
1714
|
var _2 = `<${m2}>`;
|
|
977
1715
|
var w2 = document;
|
|
978
|
-
var
|
|
979
|
-
var
|
|
1716
|
+
var lt = () => w2.createComment("");
|
|
1717
|
+
var st = (t22) => null === t22 || "object" != typeof t22 && "function" != typeof t22;
|
|
980
1718
|
var g2 = Array.isArray;
|
|
981
1719
|
var $2 = (t22) => g2(t22) || "function" == typeof t22?.[Symbol.iterator];
|
|
982
1720
|
var x2 = "[ \n\f\r]";
|
|
983
1721
|
var T2 = /<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g;
|
|
984
1722
|
var E2 = /-->/g;
|
|
985
1723
|
var k2 = />/g;
|
|
986
|
-
var
|
|
1724
|
+
var O = RegExp(`>|${x2}(?:([^\\s"'>=/]+)(${x2}*=${x2}*(?:[^
|
|
987
1725
|
\f\r"'\`<>=]|("|')|))|$)`, "g");
|
|
988
1726
|
var S22 = /'/g;
|
|
989
1727
|
var j2 = /"/g;
|
|
990
1728
|
var M2 = /^(?:script|style|textarea|title)$/i;
|
|
991
1729
|
var P2 = (t22) => (i32, ...s22) => ({ _$litType$: t22, strings: i32, values: s22 });
|
|
992
|
-
var
|
|
993
|
-
var
|
|
994
|
-
var
|
|
1730
|
+
var ke = P2(1);
|
|
1731
|
+
var Oe = P2(2);
|
|
1732
|
+
var Se = P2(3);
|
|
995
1733
|
var R2 = Symbol.for("lit-noChange");
|
|
996
|
-
var
|
|
1734
|
+
var D = Symbol.for("lit-nothing");
|
|
997
1735
|
var V2 = /* @__PURE__ */ new WeakMap();
|
|
998
1736
|
var I2 = w2.createTreeWalker(w2, 129);
|
|
999
1737
|
function N2(t22, i32) {
|
|
1000
1738
|
if (!g2(t22) || !t22.hasOwnProperty("raw")) throw Error("invalid template strings array");
|
|
1001
1739
|
return void 0 !== h22 ? h22.createHTML(i32) : i32;
|
|
1002
1740
|
}
|
|
1003
|
-
var
|
|
1741
|
+
var U = (t22, i32) => {
|
|
1004
1742
|
const s22 = t22.length - 1, e42 = [];
|
|
1005
|
-
let
|
|
1006
|
-
for (let
|
|
1007
|
-
const
|
|
1743
|
+
let h4, o42 = 2 === i32 ? "<svg>" : 3 === i32 ? "<math>" : "", n52 = T2;
|
|
1744
|
+
for (let i42 = 0; i42 < s22; i42++) {
|
|
1745
|
+
const s32 = t22[i42];
|
|
1008
1746
|
let r42, l22, c42 = -1, a22 = 0;
|
|
1009
|
-
for (; a22 <
|
|
1010
|
-
const u22 = n52 ===
|
|
1011
|
-
o42 += n52 === T2 ?
|
|
1747
|
+
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);
|
|
1748
|
+
const u22 = n52 === O && t22[i42 + 1].startsWith("/>") ? " " : "";
|
|
1749
|
+
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);
|
|
1012
1750
|
}
|
|
1013
1751
|
return [N2(t22, o42 + (t22[s22] || "<?>") + (2 === i32 ? "</svg>" : 3 === i32 ? "</math>" : "")), e42];
|
|
1014
1752
|
};
|
|
@@ -1016,8 +1754,8 @@ var B2 = class _B {
|
|
|
1016
1754
|
constructor({ strings: t22, _$litType$: i32 }, s22) {
|
|
1017
1755
|
let e42;
|
|
1018
1756
|
this.parts = [];
|
|
1019
|
-
let
|
|
1020
|
-
const n52 = t22.length - 1, r42 = this.parts, [l22, a22] =
|
|
1757
|
+
let h4 = 0, o42 = 0;
|
|
1758
|
+
const n52 = t22.length - 1, r42 = this.parts, [l22, a22] = U(t22, i32);
|
|
1021
1759
|
if (this.el = _B.createElement(l22, s22), I2.currentNode = this.el.content, 2 === i32 || 3 === i32) {
|
|
1022
1760
|
const t32 = this.el.content.firstChild;
|
|
1023
1761
|
t32.replaceWith(...t32.childNodes);
|
|
@@ -1025,23 +1763,23 @@ var B2 = class _B {
|
|
|
1025
1763
|
for (; null !== (e42 = I2.nextNode()) && r42.length < n52; ) {
|
|
1026
1764
|
if (1 === e42.nodeType) {
|
|
1027
1765
|
if (e42.hasAttributes()) for (const t32 of e42.getAttributeNames()) if (t32.endsWith(f22)) {
|
|
1028
|
-
const
|
|
1029
|
-
r42.push({ type: 1, index:
|
|
1030
|
-
} else t32.startsWith(v2) && (r42.push({ type: 6, index:
|
|
1766
|
+
const i42 = a22[o42++], s32 = e42.getAttribute(t32).split(v2), n62 = /([.?@])?(.*)/.exec(i42);
|
|
1767
|
+
r42.push({ type: 1, index: h4, name: n62[2], strings: s32, ctor: "." === n62[1] ? Y : "?" === n62[1] ? Z2 : "@" === n62[1] ? q : G }), e42.removeAttribute(t32);
|
|
1768
|
+
} else t32.startsWith(v2) && (r42.push({ type: 6, index: h4 }), e42.removeAttribute(t32));
|
|
1031
1769
|
if (M2.test(e42.tagName)) {
|
|
1032
|
-
const t32 = e42.textContent.split(v2),
|
|
1033
|
-
if (
|
|
1770
|
+
const t32 = e42.textContent.split(v2), i42 = t32.length - 1;
|
|
1771
|
+
if (i42 > 0) {
|
|
1034
1772
|
e42.textContent = c32 ? c32.emptyScript : "";
|
|
1035
|
-
for (let
|
|
1036
|
-
e42.append(t32[
|
|
1773
|
+
for (let s32 = 0; s32 < i42; s32++) e42.append(t32[s32], lt()), I2.nextNode(), r42.push({ type: 2, index: ++h4 });
|
|
1774
|
+
e42.append(t32[i42], lt());
|
|
1037
1775
|
}
|
|
1038
1776
|
}
|
|
1039
|
-
} else if (8 === e42.nodeType) if (e42.data === m2) r42.push({ type: 2, index:
|
|
1777
|
+
} else if (8 === e42.nodeType) if (e42.data === m2) r42.push({ type: 2, index: h4 });
|
|
1040
1778
|
else {
|
|
1041
1779
|
let t32 = -1;
|
|
1042
|
-
for (; -1 !== (t32 = e42.data.indexOf(v2, t32 + 1)); ) r42.push({ type: 7, index:
|
|
1780
|
+
for (; -1 !== (t32 = e42.data.indexOf(v2, t32 + 1)); ) r42.push({ type: 7, index: h4 }), t32 += v2.length - 1;
|
|
1043
1781
|
}
|
|
1044
|
-
|
|
1782
|
+
h4++;
|
|
1045
1783
|
}
|
|
1046
1784
|
}
|
|
1047
1785
|
static createElement(t22, i32) {
|
|
@@ -1051,11 +1789,11 @@ var B2 = class _B {
|
|
|
1051
1789
|
};
|
|
1052
1790
|
function z2(t22, i32, s22 = t22, e42) {
|
|
1053
1791
|
if (i32 === R2) return i32;
|
|
1054
|
-
let
|
|
1055
|
-
const o42 =
|
|
1056
|
-
return
|
|
1792
|
+
let h4 = void 0 !== e42 ? s22.o?.[e42] : s22.l;
|
|
1793
|
+
const o42 = st(i32) ? void 0 : i32._$litDirective$;
|
|
1794
|
+
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;
|
|
1057
1795
|
}
|
|
1058
|
-
var
|
|
1796
|
+
var F = class {
|
|
1059
1797
|
constructor(t22, i32) {
|
|
1060
1798
|
this._$AV = [], this._$AN = void 0, this._$AD = t22, this._$AM = i32;
|
|
1061
1799
|
}
|
|
@@ -1068,13 +1806,13 @@ var F2 = class {
|
|
|
1068
1806
|
u(t22) {
|
|
1069
1807
|
const { el: { content: i32 }, parts: s22 } = this._$AD, e42 = (t22?.creationScope ?? w2).importNode(i32, true);
|
|
1070
1808
|
I2.currentNode = e42;
|
|
1071
|
-
let
|
|
1809
|
+
let h4 = I2.nextNode(), o42 = 0, n52 = 0, r42 = s22[0];
|
|
1072
1810
|
for (; void 0 !== r42; ) {
|
|
1073
1811
|
if (o42 === r42.index) {
|
|
1074
|
-
let
|
|
1075
|
-
2 === r42.type ?
|
|
1812
|
+
let i42;
|
|
1813
|
+
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];
|
|
1076
1814
|
}
|
|
1077
|
-
o42 !== r42?.index && (
|
|
1815
|
+
o42 !== r42?.index && (h4 = I2.nextNode(), o42++);
|
|
1078
1816
|
}
|
|
1079
1817
|
return I2.currentNode = w2, e42;
|
|
1080
1818
|
}
|
|
@@ -1083,12 +1821,12 @@ var F2 = class {
|
|
|
1083
1821
|
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++;
|
|
1084
1822
|
}
|
|
1085
1823
|
};
|
|
1086
|
-
var
|
|
1824
|
+
var et = class _et {
|
|
1087
1825
|
get _$AU() {
|
|
1088
1826
|
return this._$AM?._$AU ?? this.v;
|
|
1089
1827
|
}
|
|
1090
1828
|
constructor(t22, i32, s22, e42) {
|
|
1091
|
-
this.type = 2, this._$AH =
|
|
1829
|
+
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;
|
|
1092
1830
|
}
|
|
1093
1831
|
get parentNode() {
|
|
1094
1832
|
let t22 = this._$AA.parentNode;
|
|
@@ -1102,7 +1840,7 @@ var et2 = class _et {
|
|
|
1102
1840
|
return this._$AB;
|
|
1103
1841
|
}
|
|
1104
1842
|
_$AI(t22, i32 = this) {
|
|
1105
|
-
t22 = z2(this, t22, i32),
|
|
1843
|
+
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);
|
|
1106
1844
|
}
|
|
1107
1845
|
O(t22) {
|
|
1108
1846
|
return this._$AA.parentNode.insertBefore(t22, this._$AB);
|
|
@@ -1111,14 +1849,14 @@ var et2 = class _et {
|
|
|
1111
1849
|
this._$AH !== t22 && (this._$AR(), this._$AH = this.O(t22));
|
|
1112
1850
|
}
|
|
1113
1851
|
_(t22) {
|
|
1114
|
-
this._$AH !==
|
|
1852
|
+
this._$AH !== D && st(this._$AH) ? this._$AA.nextSibling.data = t22 : this.T(w2.createTextNode(t22)), this._$AH = t22;
|
|
1115
1853
|
}
|
|
1116
1854
|
$(t22) {
|
|
1117
1855
|
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);
|
|
1118
1856
|
if (this._$AH?._$AD === e42) this._$AH.p(i32);
|
|
1119
1857
|
else {
|
|
1120
|
-
const t32 = new
|
|
1121
|
-
t32.p(i32), this.T(
|
|
1858
|
+
const t32 = new F(e42, this), s32 = t32.u(this.options);
|
|
1859
|
+
t32.p(i32), this.T(s32), this._$AH = t32;
|
|
1122
1860
|
}
|
|
1123
1861
|
}
|
|
1124
1862
|
_$AC(t22) {
|
|
@@ -1129,74 +1867,74 @@ var et2 = class _et {
|
|
|
1129
1867
|
g2(this._$AH) || (this._$AH = [], this._$AR());
|
|
1130
1868
|
const i32 = this._$AH;
|
|
1131
1869
|
let s22, e42 = 0;
|
|
1132
|
-
for (const
|
|
1870
|
+
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++;
|
|
1133
1871
|
e42 < i32.length && (this._$AR(s22 && s22._$AB.nextSibling, e42), i32.length = e42);
|
|
1134
1872
|
}
|
|
1135
1873
|
_$AR(t22 = this._$AA.nextSibling, i32) {
|
|
1136
1874
|
for (this._$AP?.(false, true, i32); t22 && t22 !== this._$AB; ) {
|
|
1137
|
-
const
|
|
1138
|
-
t22.remove(), t22 =
|
|
1875
|
+
const i42 = t22.nextSibling;
|
|
1876
|
+
t22.remove(), t22 = i42;
|
|
1139
1877
|
}
|
|
1140
1878
|
}
|
|
1141
1879
|
setConnected(t22) {
|
|
1142
1880
|
void 0 === this._$AM && (this.v = t22, this._$AP?.(t22));
|
|
1143
1881
|
}
|
|
1144
1882
|
};
|
|
1145
|
-
var
|
|
1883
|
+
var G = class {
|
|
1146
1884
|
get tagName() {
|
|
1147
1885
|
return this.element.tagName;
|
|
1148
1886
|
}
|
|
1149
1887
|
get _$AU() {
|
|
1150
1888
|
return this._$AM._$AU;
|
|
1151
1889
|
}
|
|
1152
|
-
constructor(t22, i32, s22, e42,
|
|
1153
|
-
this.type = 1, this._$AH =
|
|
1890
|
+
constructor(t22, i32, s22, e42, h4) {
|
|
1891
|
+
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;
|
|
1154
1892
|
}
|
|
1155
1893
|
_$AI(t22, i32 = this, s22, e42) {
|
|
1156
|
-
const
|
|
1894
|
+
const h4 = this.strings;
|
|
1157
1895
|
let o42 = false;
|
|
1158
|
-
if (void 0 ===
|
|
1896
|
+
if (void 0 === h4) t22 = z2(this, t22, i32, 0), o42 = !st(t22) || t22 !== this._$AH && t22 !== R2, o42 && (this._$AH = t22);
|
|
1159
1897
|
else {
|
|
1160
1898
|
const e52 = t22;
|
|
1161
1899
|
let n52, r42;
|
|
1162
|
-
for (t22 =
|
|
1900
|
+
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;
|
|
1163
1901
|
}
|
|
1164
1902
|
o42 && !e42 && this.j(t22);
|
|
1165
1903
|
}
|
|
1166
1904
|
j(t22) {
|
|
1167
|
-
t22 ===
|
|
1905
|
+
t22 === D ? this.element.removeAttribute(this.name) : this.element.setAttribute(this.name, t22 ?? "");
|
|
1168
1906
|
}
|
|
1169
1907
|
};
|
|
1170
|
-
var
|
|
1908
|
+
var Y = class extends G {
|
|
1171
1909
|
constructor() {
|
|
1172
1910
|
super(...arguments), this.type = 3;
|
|
1173
1911
|
}
|
|
1174
1912
|
j(t22) {
|
|
1175
|
-
this.element[this.name] = t22 ===
|
|
1913
|
+
this.element[this.name] = t22 === D ? void 0 : t22;
|
|
1176
1914
|
}
|
|
1177
1915
|
};
|
|
1178
|
-
var Z2 = class extends
|
|
1916
|
+
var Z2 = class extends G {
|
|
1179
1917
|
constructor() {
|
|
1180
1918
|
super(...arguments), this.type = 4;
|
|
1181
1919
|
}
|
|
1182
1920
|
j(t22) {
|
|
1183
|
-
this.element.toggleAttribute(this.name, !!t22 && t22 !==
|
|
1921
|
+
this.element.toggleAttribute(this.name, !!t22 && t22 !== D);
|
|
1184
1922
|
}
|
|
1185
1923
|
};
|
|
1186
|
-
var
|
|
1187
|
-
constructor(t22, i32, s22, e42,
|
|
1188
|
-
super(t22, i32, s22, e42,
|
|
1924
|
+
var q = class extends G {
|
|
1925
|
+
constructor(t22, i32, s22, e42, h4) {
|
|
1926
|
+
super(t22, i32, s22, e42, h4), this.type = 5;
|
|
1189
1927
|
}
|
|
1190
1928
|
_$AI(t22, i32 = this) {
|
|
1191
|
-
if ((t22 = z2(this, t22, i32, 0) ??
|
|
1192
|
-
const s22 = this._$AH, e42 = t22 ===
|
|
1193
|
-
e42 && this.element.removeEventListener(this.name, this, s22),
|
|
1929
|
+
if ((t22 = z2(this, t22, i32, 0) ?? D) === R2) return;
|
|
1930
|
+
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);
|
|
1931
|
+
e42 && this.element.removeEventListener(this.name, this, s22), h4 && this.element.addEventListener(this.name, this, t22), this._$AH = t22;
|
|
1194
1932
|
}
|
|
1195
1933
|
handleEvent(t22) {
|
|
1196
1934
|
"function" == typeof this._$AH ? this._$AH.call(this.options?.host ?? this.element, t22) : this._$AH.handleEvent(t22);
|
|
1197
1935
|
}
|
|
1198
1936
|
};
|
|
1199
|
-
var
|
|
1937
|
+
var K = class {
|
|
1200
1938
|
constructor(t22, i32, s22) {
|
|
1201
1939
|
this.element = t22, this.type = 6, this._$AN = void 0, this._$AM = i32, this.options = s22;
|
|
1202
1940
|
}
|
|
@@ -1207,18 +1945,18 @@ var K2 = class {
|
|
|
1207
1945
|
z2(this, t22);
|
|
1208
1946
|
}
|
|
1209
1947
|
};
|
|
1210
|
-
var
|
|
1211
|
-
|
|
1212
|
-
var
|
|
1948
|
+
var Re = n32.litHtmlPolyfillSupport;
|
|
1949
|
+
Re?.(B2, et), (n32.litHtmlVersions ??= []).push("3.2.0");
|
|
1950
|
+
var Q = (t22, i32, s22) => {
|
|
1213
1951
|
const e42 = s22?.renderBefore ?? i32;
|
|
1214
|
-
let
|
|
1215
|
-
if (void 0 ===
|
|
1952
|
+
let h4 = e42._$litPart$;
|
|
1953
|
+
if (void 0 === h4) {
|
|
1216
1954
|
const t32 = s22?.renderBefore ?? null;
|
|
1217
|
-
e42._$litPart$ =
|
|
1955
|
+
e42._$litPart$ = h4 = new et(i32.insertBefore(lt(), t32), t32, void 0, s22 ?? {});
|
|
1218
1956
|
}
|
|
1219
|
-
return
|
|
1957
|
+
return h4._$AI(t22), h4;
|
|
1220
1958
|
};
|
|
1221
|
-
var h32 = class extends
|
|
1959
|
+
var h32 = class extends b3 {
|
|
1222
1960
|
constructor() {
|
|
1223
1961
|
super(...arguments), this.renderOptions = { host: this }, this.o = void 0;
|
|
1224
1962
|
}
|
|
@@ -1228,7 +1966,7 @@ var h32 = class extends b2 {
|
|
|
1228
1966
|
}
|
|
1229
1967
|
update(t22) {
|
|
1230
1968
|
const e42 = this.render();
|
|
1231
|
-
this.hasUpdated || (this.renderOptions.isConnected = this.isConnected), super.update(t22), this.o =
|
|
1969
|
+
this.hasUpdated || (this.renderOptions.isConnected = this.isConnected), super.update(t22), this.o = Q(e42, this.renderRoot, this.renderOptions);
|
|
1232
1970
|
}
|
|
1233
1971
|
connectedCallback() {
|
|
1234
1972
|
super.connectedCallback(), this.o?.setConnected(true);
|
|
@@ -1244,15 +1982,15 @@ h32._$litElement$ = true, h32["finalized"] = true, globalThis.litElementHydrateS
|
|
|
1244
1982
|
var f32 = globalThis.litElementPolyfillSupport;
|
|
1245
1983
|
f32?.({ LitElement: h32 });
|
|
1246
1984
|
(globalThis.litElementVersions ??= []).push("4.1.0");
|
|
1247
|
-
var o32 = { attribute: true, type: String, converter:
|
|
1985
|
+
var o32 = { attribute: true, type: String, converter: u3, reflect: false, hasChanged: f3 };
|
|
1248
1986
|
var r32 = (t22 = o32, e42, r42) => {
|
|
1249
1987
|
const { kind: n52, metadata: i32 } = r42;
|
|
1250
1988
|
let s22 = globalThis.litPropertyMetadata.get(i32);
|
|
1251
1989
|
if (void 0 === s22 && globalThis.litPropertyMetadata.set(i32, s22 = /* @__PURE__ */ new Map()), s22.set(r42.name, t22), "accessor" === n52) {
|
|
1252
1990
|
const { name: o42 } = r42;
|
|
1253
1991
|
return { set(r52) {
|
|
1254
|
-
const
|
|
1255
|
-
e42.set.call(this, r52), this.requestUpdate(o42,
|
|
1992
|
+
const n62 = e42.get.call(this);
|
|
1993
|
+
e42.set.call(this, r52), this.requestUpdate(o42, n62, t22);
|
|
1256
1994
|
}, init(e52) {
|
|
1257
1995
|
return void 0 !== e52 && this.P(o42, void 0, t22), e52;
|
|
1258
1996
|
} };
|
|
@@ -1260,16 +1998,16 @@ var r32 = (t22 = o32, e42, r42) => {
|
|
|
1260
1998
|
if ("setter" === n52) {
|
|
1261
1999
|
const { name: o42 } = r42;
|
|
1262
2000
|
return function(r52) {
|
|
1263
|
-
const
|
|
1264
|
-
e42.call(this, r52), this.requestUpdate(o42,
|
|
2001
|
+
const n62 = this[o42];
|
|
2002
|
+
e42.call(this, r52), this.requestUpdate(o42, n62, t22);
|
|
1265
2003
|
};
|
|
1266
2004
|
}
|
|
1267
2005
|
throw Error("Unsupported decorator location: " + n52);
|
|
1268
2006
|
};
|
|
1269
2007
|
function n42(t22) {
|
|
1270
|
-
return (e42, o42) => "object" == typeof o42 ? r32(t22, e42, o42) : ((t32, e52,
|
|
1271
|
-
const r42 = e52.hasOwnProperty(
|
|
1272
|
-
return e52.constructor.createProperty(
|
|
2008
|
+
return (e42, o42) => "object" == typeof o42 ? r32(t22, e42, o42) : ((t32, e52, o52) => {
|
|
2009
|
+
const r42 = e52.hasOwnProperty(o52);
|
|
2010
|
+
return e52.constructor.createProperty(o52, r42 ? { ...t32, wrapped: true } : t32), r42 ? Object.getOwnPropertyDescriptor(e52, o52) : void 0;
|
|
1273
2011
|
})(t22, e42, o42);
|
|
1274
2012
|
}
|
|
1275
2013
|
var appliedClassMixins = /* @__PURE__ */ new WeakMap();
|
|
@@ -1386,14 +2124,24 @@ var _lang;
|
|
|
1386
2124
|
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) {
|
|
1387
2125
|
constructor() {
|
|
1388
2126
|
super(...arguments);
|
|
2127
|
+
__runInitializers2(_init, 5, this);
|
|
1389
2128
|
__publicField2(this, "options");
|
|
1390
2129
|
__publicField2(this, "actions", {});
|
|
2130
|
+
__publicField2(this, "localize");
|
|
1391
2131
|
__privateAdd2(this, _contentEditable, __runInitializers2(_init, 8, this)), __runInitializers2(_init, 11, this);
|
|
1392
|
-
__privateAdd2(this, _lang,
|
|
2132
|
+
__privateAdd2(this, _lang, "");
|
|
1393
2133
|
__publicField2(this, "_inTransaction", false);
|
|
1394
2134
|
}
|
|
2135
|
+
get lang() {
|
|
2136
|
+
return (__privateGet2(this, _lang) || this.parentElement?.closest("[lang]")?.lang) ?? "";
|
|
2137
|
+
}
|
|
2138
|
+
set lang(value) {
|
|
2139
|
+
__privateSet2(this, _lang, value);
|
|
2140
|
+
this.localize.setLocale(value).finally(() => this.requestUpdate("lang"));
|
|
2141
|
+
}
|
|
1395
2142
|
connectedCallback() {
|
|
1396
2143
|
super.connectedCallback();
|
|
2144
|
+
this.localize.setLocale(this.lang).finally(() => this.requestUpdate());
|
|
1397
2145
|
this.getAttributeNames().forEach((k22) => this.setAttribute(k22, this.getAttribute(k22)));
|
|
1398
2146
|
}
|
|
1399
2147
|
};
|
|
@@ -1401,82 +2149,83 @@ _init = __decoratorStart2(_a);
|
|
|
1401
2149
|
_contentEditable = /* @__PURE__ */ new WeakMap();
|
|
1402
2150
|
_lang = /* @__PURE__ */ new WeakMap();
|
|
1403
2151
|
__decorateElement2(_init, 4, "contentEditable", _contentEditable_dec, LitElementWw, _contentEditable);
|
|
1404
|
-
__decorateElement2(_init,
|
|
2152
|
+
__decorateElement2(_init, 3, "lang", _lang_dec, LitElementWw);
|
|
1405
2153
|
__decoratorMetadata2(_init, LitElementWw);
|
|
1406
2154
|
__publicField2(LitElementWw, "shadowRootOptions", { ...h32.shadowRootOptions });
|
|
2155
|
+
__publicField2(LitElementWw, "scopedElements", {});
|
|
1407
2156
|
__publicField2(LitElementWw, "options", {});
|
|
1408
2157
|
__publicField2(LitElementWw, "actions", {});
|
|
1409
2158
|
|
|
1410
|
-
//
|
|
1411
|
-
var
|
|
1412
|
-
void 0 !==
|
|
1413
|
-
customElements.define(
|
|
1414
|
-
}) : customElements.define(
|
|
2159
|
+
// node_modules/@lit/reactive-element/decorators/custom-element.js
|
|
2160
|
+
var t5 = (t7) => (e10, o8) => {
|
|
2161
|
+
void 0 !== o8 ? o8.addInitializer(() => {
|
|
2162
|
+
customElements.define(t7, e10);
|
|
2163
|
+
}) : customElements.define(t7, e10);
|
|
1415
2164
|
};
|
|
1416
2165
|
|
|
1417
|
-
//
|
|
1418
|
-
var
|
|
1419
|
-
var
|
|
1420
|
-
const { kind:
|
|
1421
|
-
let
|
|
1422
|
-
if (void 0 ===
|
|
1423
|
-
const { name:
|
|
1424
|
-
return { set(
|
|
1425
|
-
const
|
|
1426
|
-
|
|
1427
|
-
}, init(
|
|
1428
|
-
return void 0 !==
|
|
2166
|
+
// node_modules/@lit/reactive-element/decorators/property.js
|
|
2167
|
+
var o6 = { attribute: true, type: String, converter: u, reflect: false, hasChanged: f };
|
|
2168
|
+
var r6 = (t7 = o6, e10, r8) => {
|
|
2169
|
+
const { kind: n7, metadata: i8 } = r8;
|
|
2170
|
+
let s4 = globalThis.litPropertyMetadata.get(i8);
|
|
2171
|
+
if (void 0 === s4 && globalThis.litPropertyMetadata.set(i8, s4 = /* @__PURE__ */ new Map()), s4.set(r8.name, t7), "accessor" === n7) {
|
|
2172
|
+
const { name: o8 } = r8;
|
|
2173
|
+
return { set(r9) {
|
|
2174
|
+
const n8 = e10.get.call(this);
|
|
2175
|
+
e10.set.call(this, r9), this.requestUpdate(o8, n8, t7);
|
|
2176
|
+
}, init(e11) {
|
|
2177
|
+
return void 0 !== e11 && this.P(o8, void 0, t7), e11;
|
|
1429
2178
|
} };
|
|
1430
2179
|
}
|
|
1431
|
-
if ("setter" ===
|
|
1432
|
-
const { name:
|
|
1433
|
-
return function(
|
|
1434
|
-
const
|
|
1435
|
-
|
|
2180
|
+
if ("setter" === n7) {
|
|
2181
|
+
const { name: o8 } = r8;
|
|
2182
|
+
return function(r9) {
|
|
2183
|
+
const n8 = this[o8];
|
|
2184
|
+
e10.call(this, r9), this.requestUpdate(o8, n8, t7);
|
|
1436
2185
|
};
|
|
1437
2186
|
}
|
|
1438
|
-
throw Error("Unsupported decorator location: " +
|
|
2187
|
+
throw Error("Unsupported decorator location: " + n7);
|
|
1439
2188
|
};
|
|
1440
|
-
function
|
|
1441
|
-
return (
|
|
1442
|
-
const
|
|
1443
|
-
return
|
|
1444
|
-
})(
|
|
2189
|
+
function n6(t7) {
|
|
2190
|
+
return (e10, o8) => "object" == typeof o8 ? r6(t7, e10, o8) : ((t8, e11, o9) => {
|
|
2191
|
+
const r8 = e11.hasOwnProperty(o9);
|
|
2192
|
+
return e11.constructor.createProperty(o9, r8 ? { ...t8, wrapped: true } : t8), r8 ? Object.getOwnPropertyDescriptor(e11, o9) : void 0;
|
|
2193
|
+
})(t7, e10, o8);
|
|
1445
2194
|
}
|
|
1446
2195
|
|
|
1447
|
-
//
|
|
1448
|
-
function
|
|
1449
|
-
return
|
|
2196
|
+
// node_modules/@lit/reactive-element/decorators/state.js
|
|
2197
|
+
function r7(r8) {
|
|
2198
|
+
return n6({ ...r8, state: true, attribute: false });
|
|
1450
2199
|
}
|
|
1451
2200
|
|
|
1452
|
-
//
|
|
1453
|
-
var
|
|
2201
|
+
// node_modules/@lit/reactive-element/decorators/base.js
|
|
2202
|
+
var e7 = (e10, t7, c5) => (c5.configurable = true, c5.enumerable = true, Reflect.decorate && "object" != typeof t7 && Object.defineProperty(e10, t7, c5), c5);
|
|
1454
2203
|
|
|
1455
|
-
//
|
|
1456
|
-
function
|
|
1457
|
-
return (
|
|
1458
|
-
const
|
|
1459
|
-
if (
|
|
1460
|
-
const { get:
|
|
1461
|
-
const
|
|
2204
|
+
// node_modules/@lit/reactive-element/decorators/query.js
|
|
2205
|
+
function e8(e10, r8) {
|
|
2206
|
+
return (n7, s4, i8) => {
|
|
2207
|
+
const o8 = (t7) => t7.renderRoot?.querySelector(e10) ?? null;
|
|
2208
|
+
if (r8) {
|
|
2209
|
+
const { get: e11, set: r9 } = "object" == typeof s4 ? n7 : i8 ?? (() => {
|
|
2210
|
+
const t7 = Symbol();
|
|
1462
2211
|
return { get() {
|
|
1463
|
-
return this[
|
|
1464
|
-
}, set(
|
|
1465
|
-
this[
|
|
2212
|
+
return this[t7];
|
|
2213
|
+
}, set(e12) {
|
|
2214
|
+
this[t7] = e12;
|
|
1466
2215
|
} };
|
|
1467
2216
|
})();
|
|
1468
|
-
return
|
|
1469
|
-
let
|
|
1470
|
-
return void 0 ===
|
|
2217
|
+
return e7(n7, s4, { get() {
|
|
2218
|
+
let t7 = e11.call(this);
|
|
2219
|
+
return void 0 === t7 && (t7 = o8(this), (null !== t7 || this.hasUpdated) && r9.call(this, t7)), t7;
|
|
1471
2220
|
} });
|
|
1472
2221
|
}
|
|
1473
|
-
return
|
|
1474
|
-
return
|
|
2222
|
+
return e7(n7, s4, { get() {
|
|
2223
|
+
return o8(this);
|
|
1475
2224
|
} });
|
|
1476
2225
|
};
|
|
1477
2226
|
}
|
|
1478
2227
|
|
|
1479
|
-
//
|
|
2228
|
+
// node_modules/@shoelace-style/shoelace/dist/chunks/chunk.FKMWLPHV.js
|
|
1480
2229
|
var radio_styles_default = i`
|
|
1481
2230
|
:host {
|
|
1482
2231
|
display: block;
|
|
@@ -1591,7 +2340,23 @@ var radio_styles_default = i`
|
|
|
1591
2340
|
}
|
|
1592
2341
|
`;
|
|
1593
2342
|
|
|
1594
|
-
//
|
|
2343
|
+
// node_modules/@shoelace-style/shoelace/dist/chunks/chunk.QLXRCYS4.js
|
|
2344
|
+
var icon_styles_default = i`
|
|
2345
|
+
:host {
|
|
2346
|
+
display: inline-block;
|
|
2347
|
+
width: 1em;
|
|
2348
|
+
height: 1em;
|
|
2349
|
+
box-sizing: content-box !important;
|
|
2350
|
+
}
|
|
2351
|
+
|
|
2352
|
+
svg {
|
|
2353
|
+
display: block;
|
|
2354
|
+
height: 100%;
|
|
2355
|
+
width: 100%;
|
|
2356
|
+
}
|
|
2357
|
+
`;
|
|
2358
|
+
|
|
2359
|
+
// node_modules/@shoelace-style/shoelace/dist/chunks/chunk.3Y6SB6QS.js
|
|
1595
2360
|
var basePath = "";
|
|
1596
2361
|
function setBasePath(path) {
|
|
1597
2362
|
basePath = path;
|
|
@@ -1603,8 +2368,8 @@ function getBasePath(subpath = "") {
|
|
|
1603
2368
|
if (configScript) {
|
|
1604
2369
|
setBasePath(configScript.getAttribute("data-shoelace"));
|
|
1605
2370
|
} else {
|
|
1606
|
-
const fallbackScript = scripts.find((
|
|
1607
|
-
return /shoelace(\.min)?\.js($|\?)/.test(
|
|
2371
|
+
const fallbackScript = scripts.find((s4) => {
|
|
2372
|
+
return /shoelace(\.min)?\.js($|\?)/.test(s4.src) || /shoelace-autoloader(\.min)?\.js($|\?)/.test(s4.src);
|
|
1608
2373
|
});
|
|
1609
2374
|
let path = "";
|
|
1610
2375
|
if (fallbackScript) {
|
|
@@ -1616,14 +2381,14 @@ function getBasePath(subpath = "") {
|
|
|
1616
2381
|
return basePath.replace(/\/$/, "") + (subpath ? `/${subpath.replace(/^\//, "")}` : ``);
|
|
1617
2382
|
}
|
|
1618
2383
|
|
|
1619
|
-
//
|
|
2384
|
+
// node_modules/@shoelace-style/shoelace/dist/chunks/chunk.P7ZG6EMR.js
|
|
1620
2385
|
var library = {
|
|
1621
2386
|
name: "default",
|
|
1622
2387
|
resolver: (name) => getBasePath(`assets/icons/${name}.svg`)
|
|
1623
2388
|
};
|
|
1624
2389
|
var library_default_default = library;
|
|
1625
2390
|
|
|
1626
|
-
//
|
|
2391
|
+
// node_modules/@shoelace-style/shoelace/dist/chunks/chunk.3TFKS637.js
|
|
1627
2392
|
var icons = {
|
|
1628
2393
|
caret: `
|
|
1629
2394
|
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
|
@@ -1747,7 +2512,7 @@ var systemLibrary = {
|
|
|
1747
2512
|
};
|
|
1748
2513
|
var library_system_default = systemLibrary;
|
|
1749
2514
|
|
|
1750
|
-
//
|
|
2515
|
+
// node_modules/@shoelace-style/shoelace/dist/chunks/chunk.ZL53POKZ.js
|
|
1751
2516
|
var registry = [library_default_default, library_system_default];
|
|
1752
2517
|
var watchedIcons = [];
|
|
1753
2518
|
function watchIcon(icon) {
|
|
@@ -1760,23 +2525,7 @@ function getIconLibrary(name) {
|
|
|
1760
2525
|
return registry.find((lib) => lib.name === name);
|
|
1761
2526
|
}
|
|
1762
2527
|
|
|
1763
|
-
//
|
|
1764
|
-
var icon_styles_default = i`
|
|
1765
|
-
:host {
|
|
1766
|
-
display: inline-block;
|
|
1767
|
-
width: 1em;
|
|
1768
|
-
height: 1em;
|
|
1769
|
-
box-sizing: content-box !important;
|
|
1770
|
-
}
|
|
1771
|
-
|
|
1772
|
-
svg {
|
|
1773
|
-
display: block;
|
|
1774
|
-
height: 100%;
|
|
1775
|
-
width: 100%;
|
|
1776
|
-
}
|
|
1777
|
-
`;
|
|
1778
|
-
|
|
1779
|
-
// ../../node_modules/@shoelace-style/shoelace/dist/chunks/chunk.B3BW2AY6.js
|
|
2528
|
+
// node_modules/@shoelace-style/shoelace/dist/chunks/chunk.KAW7D32O.js
|
|
1780
2529
|
var __defProp3 = Object.defineProperty;
|
|
1781
2530
|
var __defProps = Object.defineProperties;
|
|
1782
2531
|
var __getOwnPropDesc3 = Object.getOwnPropertyDescriptor;
|
|
@@ -1784,48 +2533,36 @@ var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
|
1784
2533
|
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
1785
2534
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
1786
2535
|
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
2536
|
+
var __typeError3 = (msg2) => {
|
|
2537
|
+
throw TypeError(msg2);
|
|
2538
|
+
};
|
|
1787
2539
|
var __defNormalProp3 = (obj, key, value) => key in obj ? __defProp3(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1788
|
-
var __spreadValues = (
|
|
1789
|
-
for (var prop in
|
|
1790
|
-
if (__hasOwnProp.call(
|
|
1791
|
-
__defNormalProp3(
|
|
2540
|
+
var __spreadValues = (a4, b4) => {
|
|
2541
|
+
for (var prop in b4 || (b4 = {}))
|
|
2542
|
+
if (__hasOwnProp.call(b4, prop))
|
|
2543
|
+
__defNormalProp3(a4, prop, b4[prop]);
|
|
1792
2544
|
if (__getOwnPropSymbols)
|
|
1793
|
-
for (var prop of __getOwnPropSymbols(
|
|
1794
|
-
if (__propIsEnum.call(
|
|
1795
|
-
__defNormalProp3(
|
|
2545
|
+
for (var prop of __getOwnPropSymbols(b4)) {
|
|
2546
|
+
if (__propIsEnum.call(b4, prop))
|
|
2547
|
+
__defNormalProp3(a4, prop, b4[prop]);
|
|
1796
2548
|
}
|
|
1797
|
-
return
|
|
2549
|
+
return a4;
|
|
1798
2550
|
};
|
|
1799
|
-
var __spreadProps = (
|
|
2551
|
+
var __spreadProps = (a4, b4) => __defProps(a4, __getOwnPropDescs(b4));
|
|
1800
2552
|
var __decorateClass = (decorators, target, key, kind) => {
|
|
1801
2553
|
var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc3(target, key) : target;
|
|
1802
|
-
for (var
|
|
1803
|
-
if (decorator = decorators[
|
|
2554
|
+
for (var i8 = decorators.length - 1, decorator; i8 >= 0; i8--)
|
|
2555
|
+
if (decorator = decorators[i8])
|
|
1804
2556
|
result = (kind ? decorator(target, key, result) : decorator(result)) || result;
|
|
1805
|
-
if (kind && result)
|
|
1806
|
-
__defProp3(target, key, result);
|
|
2557
|
+
if (kind && result) __defProp3(target, key, result);
|
|
1807
2558
|
return result;
|
|
1808
2559
|
};
|
|
1809
|
-
var __accessCheck3 = (obj, member,
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
var __privateGet3 = (obj, member, getter) => {
|
|
1814
|
-
__accessCheck3(obj, member, "read from private field");
|
|
1815
|
-
return getter ? getter.call(obj) : member.get(obj);
|
|
1816
|
-
};
|
|
1817
|
-
var __privateAdd3 = (obj, member, value) => {
|
|
1818
|
-
if (member.has(obj))
|
|
1819
|
-
throw TypeError("Cannot add the same private member more than once");
|
|
1820
|
-
member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
|
1821
|
-
};
|
|
1822
|
-
var __privateSet3 = (obj, member, value, setter) => {
|
|
1823
|
-
__accessCheck3(obj, member, "write to private field");
|
|
1824
|
-
setter ? setter.call(obj, value) : member.set(obj, value);
|
|
1825
|
-
return value;
|
|
1826
|
-
};
|
|
2560
|
+
var __accessCheck3 = (obj, member, msg2) => member.has(obj) || __typeError3("Cannot " + msg2);
|
|
2561
|
+
var __privateGet3 = (obj, member, getter) => (__accessCheck3(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
|
|
2562
|
+
var __privateAdd3 = (obj, member, value) => member.has(obj) ? __typeError3("Cannot add the same private member more than once") : member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
|
2563
|
+
var __privateSet3 = (obj, member, value, setter) => (__accessCheck3(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value);
|
|
1827
2564
|
|
|
1828
|
-
//
|
|
2565
|
+
// node_modules/@shoelace-style/shoelace/dist/chunks/chunk.GMYPQTFK.js
|
|
1829
2566
|
function watch(propertyName, options) {
|
|
1830
2567
|
const resolvedOptions = __spreadValues({
|
|
1831
2568
|
waitUntilFirstUpdate: false
|
|
@@ -1851,7 +2588,7 @@ function watch(propertyName, options) {
|
|
|
1851
2588
|
};
|
|
1852
2589
|
}
|
|
1853
2590
|
|
|
1854
|
-
//
|
|
2591
|
+
// node_modules/@shoelace-style/shoelace/dist/chunks/chunk.TUVJKY7S.js
|
|
1855
2592
|
var component_styles_default = i`
|
|
1856
2593
|
:host {
|
|
1857
2594
|
box-sizing: border-box;
|
|
@@ -1868,9 +2605,9 @@ var component_styles_default = i`
|
|
|
1868
2605
|
}
|
|
1869
2606
|
`;
|
|
1870
2607
|
|
|
1871
|
-
//
|
|
2608
|
+
// node_modules/@shoelace-style/shoelace/dist/chunks/chunk.EMG3ZSPT.js
|
|
1872
2609
|
var _hasRecordedInitialProperties;
|
|
1873
|
-
var ShoelaceElement = class extends
|
|
2610
|
+
var ShoelaceElement = class extends r4 {
|
|
1874
2611
|
constructor() {
|
|
1875
2612
|
super();
|
|
1876
2613
|
__privateAdd3(this, _hasRecordedInitialProperties, false);
|
|
@@ -1939,23 +2676,23 @@ var ShoelaceElement = class extends h3 {
|
|
|
1939
2676
|
}
|
|
1940
2677
|
};
|
|
1941
2678
|
_hasRecordedInitialProperties = /* @__PURE__ */ new WeakMap();
|
|
1942
|
-
ShoelaceElement.version = "2.
|
|
2679
|
+
ShoelaceElement.version = "2.19.1";
|
|
1943
2680
|
ShoelaceElement.dependencies = {};
|
|
1944
2681
|
__decorateClass([
|
|
1945
|
-
|
|
2682
|
+
n6()
|
|
1946
2683
|
], ShoelaceElement.prototype, "dir", 2);
|
|
1947
2684
|
__decorateClass([
|
|
1948
|
-
|
|
2685
|
+
n6()
|
|
1949
2686
|
], ShoelaceElement.prototype, "lang", 2);
|
|
1950
2687
|
|
|
1951
|
-
//
|
|
1952
|
-
var { I:
|
|
1953
|
-
var
|
|
1954
|
-
var
|
|
1955
|
-
var
|
|
1956
|
-
var
|
|
2688
|
+
// node_modules/lit-html/directive-helpers.js
|
|
2689
|
+
var { I: t6 } = Z;
|
|
2690
|
+
var e9 = (o8, t7) => void 0 === t7 ? void 0 !== o8?._$litType$ : o8?._$litType$ === t7;
|
|
2691
|
+
var f4 = (o8) => void 0 === o8.strings;
|
|
2692
|
+
var u4 = {};
|
|
2693
|
+
var m3 = (o8, t7 = u4) => o8._$AH = t7;
|
|
1957
2694
|
|
|
1958
|
-
//
|
|
2695
|
+
// node_modules/@shoelace-style/shoelace/dist/chunks/chunk.5YPURQKE.js
|
|
1959
2696
|
var CACHEABLE_ERROR = Symbol();
|
|
1960
2697
|
var RETRYABLE_ERROR = Symbol();
|
|
1961
2698
|
var parser;
|
|
@@ -1973,33 +2710,29 @@ var SlIcon = class extends ShoelaceElement {
|
|
|
1973
2710
|
var _a3;
|
|
1974
2711
|
let fileData;
|
|
1975
2712
|
if (library2 == null ? void 0 : library2.spriteSheet) {
|
|
1976
|
-
this.svg =
|
|
2713
|
+
this.svg = x`<svg part="svg">
|
|
1977
2714
|
<use part="use" href="${url}"></use>
|
|
1978
2715
|
</svg>`;
|
|
1979
2716
|
return this.svg;
|
|
1980
2717
|
}
|
|
1981
2718
|
try {
|
|
1982
2719
|
fileData = await fetch(url, { mode: "cors" });
|
|
1983
|
-
if (!fileData.ok)
|
|
1984
|
-
|
|
1985
|
-
} catch (e7) {
|
|
2720
|
+
if (!fileData.ok) return fileData.status === 410 ? CACHEABLE_ERROR : RETRYABLE_ERROR;
|
|
2721
|
+
} catch (e10) {
|
|
1986
2722
|
return RETRYABLE_ERROR;
|
|
1987
2723
|
}
|
|
1988
2724
|
try {
|
|
1989
2725
|
const div = document.createElement("div");
|
|
1990
2726
|
div.innerHTML = await fileData.text();
|
|
1991
2727
|
const svg = div.firstElementChild;
|
|
1992
|
-
if (((_a3 = svg == null ? void 0 : svg.tagName) == null ? void 0 : _a3.toLowerCase()) !== "svg")
|
|
1993
|
-
|
|
1994
|
-
if (!parser)
|
|
1995
|
-
parser = new DOMParser();
|
|
2728
|
+
if (((_a3 = svg == null ? void 0 : svg.tagName) == null ? void 0 : _a3.toLowerCase()) !== "svg") return CACHEABLE_ERROR;
|
|
2729
|
+
if (!parser) parser = new DOMParser();
|
|
1996
2730
|
const doc = parser.parseFromString(svg.outerHTML, "text/html");
|
|
1997
2731
|
const svgEl = doc.body.querySelector("svg");
|
|
1998
|
-
if (!svgEl)
|
|
1999
|
-
return CACHEABLE_ERROR;
|
|
2732
|
+
if (!svgEl) return CACHEABLE_ERROR;
|
|
2000
2733
|
svgEl.part.add("svg");
|
|
2001
2734
|
return document.adoptNode(svgEl);
|
|
2002
|
-
} catch (
|
|
2735
|
+
} catch (e10) {
|
|
2003
2736
|
return CACHEABLE_ERROR;
|
|
2004
2737
|
}
|
|
2005
2738
|
}
|
|
@@ -2063,7 +2796,7 @@ var SlIcon = class extends ShoelaceElement {
|
|
|
2063
2796
|
if (url !== this.getIconSource().url) {
|
|
2064
2797
|
return;
|
|
2065
2798
|
}
|
|
2066
|
-
if (
|
|
2799
|
+
if (e9(svg)) {
|
|
2067
2800
|
this.svg = svg;
|
|
2068
2801
|
if (library2) {
|
|
2069
2802
|
await this.updateComplete;
|
|
@@ -2092,19 +2825,19 @@ var SlIcon = class extends ShoelaceElement {
|
|
|
2092
2825
|
};
|
|
2093
2826
|
SlIcon.styles = [component_styles_default, icon_styles_default];
|
|
2094
2827
|
__decorateClass([
|
|
2095
|
-
|
|
2828
|
+
r7()
|
|
2096
2829
|
], SlIcon.prototype, "svg", 2);
|
|
2097
2830
|
__decorateClass([
|
|
2098
|
-
|
|
2831
|
+
n6({ reflect: true })
|
|
2099
2832
|
], SlIcon.prototype, "name", 2);
|
|
2100
2833
|
__decorateClass([
|
|
2101
|
-
|
|
2834
|
+
n6()
|
|
2102
2835
|
], SlIcon.prototype, "src", 2);
|
|
2103
2836
|
__decorateClass([
|
|
2104
|
-
|
|
2837
|
+
n6()
|
|
2105
2838
|
], SlIcon.prototype, "label", 2);
|
|
2106
2839
|
__decorateClass([
|
|
2107
|
-
|
|
2840
|
+
n6({ reflect: true })
|
|
2108
2841
|
], SlIcon.prototype, "library", 2);
|
|
2109
2842
|
__decorateClass([
|
|
2110
2843
|
watch("label")
|
|
@@ -2113,7 +2846,7 @@ __decorateClass([
|
|
|
2113
2846
|
watch(["name", "src", "library"])
|
|
2114
2847
|
], SlIcon.prototype, "setIcon", 1);
|
|
2115
2848
|
|
|
2116
|
-
//
|
|
2849
|
+
// node_modules/@shoelace-style/shoelace/dist/chunks/chunk.6X44KTBH.js
|
|
2117
2850
|
var SlRadio = class extends ShoelaceElement {
|
|
2118
2851
|
constructor() {
|
|
2119
2852
|
super();
|
|
@@ -2155,10 +2888,10 @@ var SlRadio = class extends ShoelaceElement {
|
|
|
2155
2888
|
this.setAttribute("aria-disabled", this.disabled ? "true" : "false");
|
|
2156
2889
|
}
|
|
2157
2890
|
render() {
|
|
2158
|
-
return
|
|
2891
|
+
return x`
|
|
2159
2892
|
<span
|
|
2160
2893
|
part="base"
|
|
2161
|
-
class=${
|
|
2894
|
+
class=${e5({
|
|
2162
2895
|
radio: true,
|
|
2163
2896
|
"radio--checked": this.checked,
|
|
2164
2897
|
"radio--disabled": this.disabled,
|
|
@@ -2169,7 +2902,7 @@ var SlRadio = class extends ShoelaceElement {
|
|
|
2169
2902
|
})}
|
|
2170
2903
|
>
|
|
2171
2904
|
<span part="${`control${this.checked ? " control--checked" : ""}`}" class="radio__control">
|
|
2172
|
-
${this.checked ?
|
|
2905
|
+
${this.checked ? x` <sl-icon part="checked-icon" class="radio__checked-icon" library="system" name="radio"></sl-icon> ` : ""}
|
|
2173
2906
|
</span>
|
|
2174
2907
|
|
|
2175
2908
|
<slot part="label" class="radio__label"></slot>
|
|
@@ -2180,19 +2913,19 @@ var SlRadio = class extends ShoelaceElement {
|
|
|
2180
2913
|
SlRadio.styles = [component_styles_default, radio_styles_default];
|
|
2181
2914
|
SlRadio.dependencies = { "sl-icon": SlIcon };
|
|
2182
2915
|
__decorateClass([
|
|
2183
|
-
|
|
2916
|
+
r7()
|
|
2184
2917
|
], SlRadio.prototype, "checked", 2);
|
|
2185
2918
|
__decorateClass([
|
|
2186
|
-
|
|
2919
|
+
r7()
|
|
2187
2920
|
], SlRadio.prototype, "hasFocus", 2);
|
|
2188
2921
|
__decorateClass([
|
|
2189
|
-
|
|
2922
|
+
n6()
|
|
2190
2923
|
], SlRadio.prototype, "value", 2);
|
|
2191
2924
|
__decorateClass([
|
|
2192
|
-
|
|
2925
|
+
n6({ reflect: true })
|
|
2193
2926
|
], SlRadio.prototype, "size", 2);
|
|
2194
2927
|
__decorateClass([
|
|
2195
|
-
|
|
2928
|
+
n6({ type: Boolean, reflect: true })
|
|
2196
2929
|
], SlRadio.prototype, "disabled", 2);
|
|
2197
2930
|
__decorateClass([
|
|
2198
2931
|
watch("checked")
|
|
@@ -2201,7 +2934,7 @@ __decorateClass([
|
|
|
2201
2934
|
watch("disabled", { waitUntilFirstUpdate: true })
|
|
2202
2935
|
], SlRadio.prototype, "handleDisabledChange", 1);
|
|
2203
2936
|
|
|
2204
|
-
//
|
|
2937
|
+
// node_modules/@shoelace-style/shoelace/dist/chunks/chunk.R3NF57O3.js
|
|
2205
2938
|
var checkbox_styles_default = i`
|
|
2206
2939
|
:host {
|
|
2207
2940
|
display: inline-block;
|
|
@@ -2322,7 +3055,7 @@ var checkbox_styles_default = i`
|
|
|
2322
3055
|
}
|
|
2323
3056
|
`;
|
|
2324
3057
|
|
|
2325
|
-
//
|
|
3058
|
+
// node_modules/@shoelace-style/shoelace/dist/chunks/chunk.GI7VDIWX.js
|
|
2326
3059
|
var defaultValue = (propertyName = "value") => (proto, key) => {
|
|
2327
3060
|
const ctor = proto.constructor;
|
|
2328
3061
|
const attributeChangedCallback = ctor.prototype.attributeChangedCallback;
|
|
@@ -2342,7 +3075,7 @@ var defaultValue = (propertyName = "value") => (proto, key) => {
|
|
|
2342
3075
|
};
|
|
2343
3076
|
};
|
|
2344
3077
|
|
|
2345
|
-
//
|
|
3078
|
+
// node_modules/@shoelace-style/shoelace/dist/chunks/chunk.SI4ACBFK.js
|
|
2346
3079
|
var form_control_styles_default = i`
|
|
2347
3080
|
.form-control .form-control__label {
|
|
2348
3081
|
display: none;
|
|
@@ -2401,7 +3134,7 @@ var form_control_styles_default = i`
|
|
|
2401
3134
|
}
|
|
2402
3135
|
`;
|
|
2403
3136
|
|
|
2404
|
-
//
|
|
3137
|
+
// node_modules/@shoelace-style/shoelace/dist/chunks/chunk.3RPBFEDE.js
|
|
2405
3138
|
var formCollections = /* @__PURE__ */ new WeakMap();
|
|
2406
3139
|
var reportValidityOverloads = /* @__PURE__ */ new WeakMap();
|
|
2407
3140
|
var checkValidityOverloads = /* @__PURE__ */ new WeakMap();
|
|
@@ -2558,8 +3291,7 @@ var FormControlController = class {
|
|
|
2558
3291
|
}
|
|
2559
3292
|
}
|
|
2560
3293
|
detachForm() {
|
|
2561
|
-
if (!this.form)
|
|
2562
|
-
return;
|
|
3294
|
+
if (!this.form) return;
|
|
2563
3295
|
const formCollection = formCollections.get(this.form);
|
|
2564
3296
|
if (!formCollection) {
|
|
2565
3297
|
return;
|
|
@@ -2692,7 +3424,7 @@ var customErrorValidityState = Object.freeze(__spreadProps(__spreadValues({}, va
|
|
|
2692
3424
|
customError: true
|
|
2693
3425
|
}));
|
|
2694
3426
|
|
|
2695
|
-
//
|
|
3427
|
+
// node_modules/@shoelace-style/shoelace/dist/chunks/chunk.NYIIDP5N.js
|
|
2696
3428
|
var HasSlotController = class {
|
|
2697
3429
|
constructor(host, ...slotNames) {
|
|
2698
3430
|
this.slotNames = [];
|
|
@@ -2737,31 +3469,31 @@ var HasSlotController = class {
|
|
|
2737
3469
|
}
|
|
2738
3470
|
};
|
|
2739
3471
|
|
|
2740
|
-
//
|
|
2741
|
-
var
|
|
3472
|
+
// node_modules/lit-html/directives/if-defined.js
|
|
3473
|
+
var o7 = (o8) => o8 ?? E;
|
|
2742
3474
|
|
|
2743
|
-
//
|
|
2744
|
-
var
|
|
2745
|
-
constructor(
|
|
2746
|
-
if (super(
|
|
2747
|
-
if (!
|
|
3475
|
+
// node_modules/lit-html/directives/live.js
|
|
3476
|
+
var l4 = e4(class extends i5 {
|
|
3477
|
+
constructor(r8) {
|
|
3478
|
+
if (super(r8), r8.type !== t3.PROPERTY && r8.type !== t3.ATTRIBUTE && r8.type !== t3.BOOLEAN_ATTRIBUTE) throw Error("The `live` directive is not allowed on child or event bindings");
|
|
3479
|
+
if (!f4(r8)) throw Error("`live` bindings can only contain a single expression");
|
|
2748
3480
|
}
|
|
2749
|
-
render(
|
|
2750
|
-
return
|
|
3481
|
+
render(r8) {
|
|
3482
|
+
return r8;
|
|
2751
3483
|
}
|
|
2752
|
-
update(
|
|
2753
|
-
if (
|
|
2754
|
-
const
|
|
2755
|
-
if (
|
|
2756
|
-
if (
|
|
2757
|
-
} else if (
|
|
2758
|
-
if (!!
|
|
2759
|
-
} else if (
|
|
2760
|
-
return
|
|
3484
|
+
update(i8, [t7]) {
|
|
3485
|
+
if (t7 === T || t7 === E) return t7;
|
|
3486
|
+
const o8 = i8.element, l5 = i8.name;
|
|
3487
|
+
if (i8.type === t3.PROPERTY) {
|
|
3488
|
+
if (t7 === o8[l5]) return T;
|
|
3489
|
+
} else if (i8.type === t3.BOOLEAN_ATTRIBUTE) {
|
|
3490
|
+
if (!!t7 === o8.hasAttribute(l5)) return T;
|
|
3491
|
+
} else if (i8.type === t3.ATTRIBUTE && o8.getAttribute(l5) === t7 + "") return T;
|
|
3492
|
+
return m3(i8), t7;
|
|
2761
3493
|
}
|
|
2762
3494
|
});
|
|
2763
3495
|
|
|
2764
|
-
//
|
|
3496
|
+
// node_modules/@shoelace-style/shoelace/dist/chunks/chunk.DLKOLJ5T.js
|
|
2765
3497
|
var SlCheckbox = class extends ShoelaceElement {
|
|
2766
3498
|
constructor() {
|
|
2767
3499
|
super(...arguments);
|
|
@@ -2857,9 +3589,9 @@ var SlCheckbox = class extends ShoelaceElement {
|
|
|
2857
3589
|
render() {
|
|
2858
3590
|
const hasHelpTextSlot = this.hasSlotController.test("help-text");
|
|
2859
3591
|
const hasHelpText = this.helpText ? true : !!hasHelpTextSlot;
|
|
2860
|
-
return
|
|
3592
|
+
return x`
|
|
2861
3593
|
<div
|
|
2862
|
-
class=${
|
|
3594
|
+
class=${e5({
|
|
2863
3595
|
"form-control": true,
|
|
2864
3596
|
"form-control--small": this.size === "small",
|
|
2865
3597
|
"form-control--medium": this.size === "medium",
|
|
@@ -2869,7 +3601,7 @@ var SlCheckbox = class extends ShoelaceElement {
|
|
|
2869
3601
|
>
|
|
2870
3602
|
<label
|
|
2871
3603
|
part="base"
|
|
2872
|
-
class=${
|
|
3604
|
+
class=${e5({
|
|
2873
3605
|
checkbox: true,
|
|
2874
3606
|
"checkbox--checked": this.checked,
|
|
2875
3607
|
"checkbox--disabled": this.disabled,
|
|
@@ -2885,9 +3617,9 @@ var SlCheckbox = class extends ShoelaceElement {
|
|
|
2885
3617
|
type="checkbox"
|
|
2886
3618
|
title=${this.title}
|
|
2887
3619
|
name=${this.name}
|
|
2888
|
-
value=${
|
|
2889
|
-
.indeterminate=${
|
|
2890
|
-
.checked=${
|
|
3620
|
+
value=${o7(this.value)}
|
|
3621
|
+
.indeterminate=${l4(this.indeterminate)}
|
|
3622
|
+
.checked=${l4(this.checked)}
|
|
2891
3623
|
.disabled=${this.disabled}
|
|
2892
3624
|
.required=${this.required}
|
|
2893
3625
|
aria-checked=${this.checked ? "true" : "false"}
|
|
@@ -2903,10 +3635,10 @@ var SlCheckbox = class extends ShoelaceElement {
|
|
|
2903
3635
|
part="control${this.checked ? " control--checked" : ""}${this.indeterminate ? " control--indeterminate" : ""}"
|
|
2904
3636
|
class="checkbox__control"
|
|
2905
3637
|
>
|
|
2906
|
-
${this.checked ?
|
|
3638
|
+
${this.checked ? x`
|
|
2907
3639
|
<sl-icon part="checked-icon" class="checkbox__checked-icon" library="system" name="check"></sl-icon>
|
|
2908
3640
|
` : ""}
|
|
2909
|
-
${!this.checked && this.indeterminate ?
|
|
3641
|
+
${!this.checked && this.indeterminate ? x`
|
|
2910
3642
|
<sl-icon
|
|
2911
3643
|
part="indeterminate-icon"
|
|
2912
3644
|
class="checkbox__indeterminate-icon"
|
|
@@ -2936,43 +3668,43 @@ var SlCheckbox = class extends ShoelaceElement {
|
|
|
2936
3668
|
SlCheckbox.styles = [component_styles_default, form_control_styles_default, checkbox_styles_default];
|
|
2937
3669
|
SlCheckbox.dependencies = { "sl-icon": SlIcon };
|
|
2938
3670
|
__decorateClass([
|
|
2939
|
-
|
|
3671
|
+
e8('input[type="checkbox"]')
|
|
2940
3672
|
], SlCheckbox.prototype, "input", 2);
|
|
2941
3673
|
__decorateClass([
|
|
2942
|
-
|
|
3674
|
+
r7()
|
|
2943
3675
|
], SlCheckbox.prototype, "hasFocus", 2);
|
|
2944
3676
|
__decorateClass([
|
|
2945
|
-
|
|
3677
|
+
n6()
|
|
2946
3678
|
], SlCheckbox.prototype, "title", 2);
|
|
2947
3679
|
__decorateClass([
|
|
2948
|
-
|
|
3680
|
+
n6()
|
|
2949
3681
|
], SlCheckbox.prototype, "name", 2);
|
|
2950
3682
|
__decorateClass([
|
|
2951
|
-
|
|
3683
|
+
n6()
|
|
2952
3684
|
], SlCheckbox.prototype, "value", 2);
|
|
2953
3685
|
__decorateClass([
|
|
2954
|
-
|
|
3686
|
+
n6({ reflect: true })
|
|
2955
3687
|
], SlCheckbox.prototype, "size", 2);
|
|
2956
3688
|
__decorateClass([
|
|
2957
|
-
|
|
3689
|
+
n6({ type: Boolean, reflect: true })
|
|
2958
3690
|
], SlCheckbox.prototype, "disabled", 2);
|
|
2959
3691
|
__decorateClass([
|
|
2960
|
-
|
|
3692
|
+
n6({ type: Boolean, reflect: true })
|
|
2961
3693
|
], SlCheckbox.prototype, "checked", 2);
|
|
2962
3694
|
__decorateClass([
|
|
2963
|
-
|
|
3695
|
+
n6({ type: Boolean, reflect: true })
|
|
2964
3696
|
], SlCheckbox.prototype, "indeterminate", 2);
|
|
2965
3697
|
__decorateClass([
|
|
2966
3698
|
defaultValue("checked")
|
|
2967
3699
|
], SlCheckbox.prototype, "defaultChecked", 2);
|
|
2968
3700
|
__decorateClass([
|
|
2969
|
-
|
|
3701
|
+
n6({ reflect: true })
|
|
2970
3702
|
], SlCheckbox.prototype, "form", 2);
|
|
2971
3703
|
__decorateClass([
|
|
2972
|
-
|
|
3704
|
+
n6({ type: Boolean, reflect: true })
|
|
2973
3705
|
], SlCheckbox.prototype, "required", 2);
|
|
2974
3706
|
__decorateClass([
|
|
2975
|
-
|
|
3707
|
+
n6({ attribute: "help-text" })
|
|
2976
3708
|
], SlCheckbox.prototype, "helpText", 2);
|
|
2977
3709
|
__decorateClass([
|
|
2978
3710
|
watch("disabled", { waitUntilFirstUpdate: true })
|
|
@@ -2981,45 +3713,306 @@ __decorateClass([
|
|
|
2981
3713
|
watch(["checked", "indeterminate"], { waitUntilFirstUpdate: true })
|
|
2982
3714
|
], SlCheckbox.prototype, "handleStateChange", 1);
|
|
2983
3715
|
|
|
2984
|
-
//
|
|
2985
|
-
var
|
|
3716
|
+
// node_modules/lit-html/directives/keyed.js
|
|
3717
|
+
var i7 = e4(class extends i5 {
|
|
2986
3718
|
constructor() {
|
|
2987
|
-
super(...arguments), this.key =
|
|
3719
|
+
super(...arguments), this.key = E;
|
|
2988
3720
|
}
|
|
2989
|
-
render(
|
|
2990
|
-
return this.key =
|
|
3721
|
+
render(r8, t7) {
|
|
3722
|
+
return this.key = r8, t7;
|
|
2991
3723
|
}
|
|
2992
|
-
update(
|
|
2993
|
-
return
|
|
3724
|
+
update(r8, [t7, e10]) {
|
|
3725
|
+
return t7 !== this.key && (m3(r8), this.key = t7), e10;
|
|
2994
3726
|
}
|
|
2995
3727
|
});
|
|
2996
3728
|
|
|
2997
|
-
//
|
|
3729
|
+
// node_modules/bootstrap-icons/icons/x.svg
|
|
2998
3730
|
var x_default = 'data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-x" viewBox="0 0 16 16">%0A <path d="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708"/>%0A</svg>';
|
|
2999
3731
|
|
|
3000
|
-
//
|
|
3732
|
+
// node_modules/bootstrap-icons/icons/check.svg
|
|
3001
3733
|
var check_default = 'data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-check" viewBox="0 0 16 16">%0A <path d="M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425z"/>%0A</svg>';
|
|
3002
3734
|
|
|
3735
|
+
// localization/generated/locale-codes.js
|
|
3736
|
+
var sourceLocale = `en`;
|
|
3737
|
+
var targetLocales = [
|
|
3738
|
+
`bg`,
|
|
3739
|
+
`cs`,
|
|
3740
|
+
`da`,
|
|
3741
|
+
`de`,
|
|
3742
|
+
`el`,
|
|
3743
|
+
`es`,
|
|
3744
|
+
`et`,
|
|
3745
|
+
`fi`,
|
|
3746
|
+
`fr`,
|
|
3747
|
+
`hu`,
|
|
3748
|
+
`id`,
|
|
3749
|
+
`it`,
|
|
3750
|
+
`ja`,
|
|
3751
|
+
`ko`,
|
|
3752
|
+
`lt`,
|
|
3753
|
+
`lv`,
|
|
3754
|
+
`nb`,
|
|
3755
|
+
`nl`,
|
|
3756
|
+
`pl`,
|
|
3757
|
+
`pt-BR`,
|
|
3758
|
+
`pt-PT`,
|
|
3759
|
+
`ro`,
|
|
3760
|
+
`ru`,
|
|
3761
|
+
`sk`,
|
|
3762
|
+
`sl`,
|
|
3763
|
+
`sv`,
|
|
3764
|
+
`tr`,
|
|
3765
|
+
`uk`,
|
|
3766
|
+
`zh-hans`
|
|
3767
|
+
];
|
|
3768
|
+
|
|
3769
|
+
// node_modules/@lit/localize/internal/locale-status-event.js
|
|
3770
|
+
var LOCALE_STATUS_EVENT = "lit-localize-status";
|
|
3771
|
+
|
|
3772
|
+
// node_modules/@lit/localize/internal/str-tag.js
|
|
3773
|
+
var isStrTagged = (val) => typeof val !== "string" && "strTag" in val;
|
|
3774
|
+
var joinStringsAndValues = (strings, values, valueOrder) => {
|
|
3775
|
+
let concat = strings[0];
|
|
3776
|
+
for (let i8 = 1; i8 < strings.length; i8++) {
|
|
3777
|
+
concat += values[valueOrder ? valueOrder[i8 - 1] : i8 - 1];
|
|
3778
|
+
concat += strings[i8];
|
|
3779
|
+
}
|
|
3780
|
+
return concat;
|
|
3781
|
+
};
|
|
3782
|
+
|
|
3783
|
+
// node_modules/@lit/localize/internal/default-msg.js
|
|
3784
|
+
var defaultMsg = (template) => isStrTagged(template) ? joinStringsAndValues(template.strings, template.values) : template;
|
|
3785
|
+
|
|
3786
|
+
// node_modules/@lit/localize/init/install.js
|
|
3787
|
+
var msg = defaultMsg;
|
|
3788
|
+
var installed = false;
|
|
3789
|
+
function _installMsgImplementation(impl) {
|
|
3790
|
+
if (installed) {
|
|
3791
|
+
throw new Error("lit-localize can only be configured once");
|
|
3792
|
+
}
|
|
3793
|
+
msg = impl;
|
|
3794
|
+
installed = true;
|
|
3795
|
+
}
|
|
3796
|
+
|
|
3797
|
+
// node_modules/@lit/localize/internal/deferred.js
|
|
3798
|
+
var Deferred = class {
|
|
3799
|
+
constructor() {
|
|
3800
|
+
this.settled = false;
|
|
3801
|
+
this.promise = new Promise((resolve, reject) => {
|
|
3802
|
+
this._resolve = resolve;
|
|
3803
|
+
this._reject = reject;
|
|
3804
|
+
});
|
|
3805
|
+
}
|
|
3806
|
+
resolve(value) {
|
|
3807
|
+
this.settled = true;
|
|
3808
|
+
this._resolve(value);
|
|
3809
|
+
}
|
|
3810
|
+
reject(error) {
|
|
3811
|
+
this.settled = true;
|
|
3812
|
+
this._reject(error);
|
|
3813
|
+
}
|
|
3814
|
+
};
|
|
3815
|
+
|
|
3816
|
+
// node_modules/@lit/localize/internal/fnv1a64.js
|
|
3817
|
+
var hl = [];
|
|
3818
|
+
for (let i8 = 0; i8 < 256; i8++) {
|
|
3819
|
+
hl[i8] = (i8 >> 4 & 15).toString(16) + (i8 & 15).toString(16);
|
|
3820
|
+
}
|
|
3821
|
+
function fnv1a64(str) {
|
|
3822
|
+
let t0 = 0, v0 = 8997, t1 = 0, v1 = 33826, t22 = 0, v22 = 40164, t32 = 0, v3 = 52210;
|
|
3823
|
+
for (let i8 = 0; i8 < str.length; i8++) {
|
|
3824
|
+
v0 ^= str.charCodeAt(i8);
|
|
3825
|
+
t0 = v0 * 435;
|
|
3826
|
+
t1 = v1 * 435;
|
|
3827
|
+
t22 = v22 * 435;
|
|
3828
|
+
t32 = v3 * 435;
|
|
3829
|
+
t22 += v0 << 8;
|
|
3830
|
+
t32 += v1 << 8;
|
|
3831
|
+
t1 += t0 >>> 16;
|
|
3832
|
+
v0 = t0 & 65535;
|
|
3833
|
+
t22 += t1 >>> 16;
|
|
3834
|
+
v1 = t1 & 65535;
|
|
3835
|
+
v3 = t32 + (t22 >>> 16) & 65535;
|
|
3836
|
+
v22 = t22 & 65535;
|
|
3837
|
+
}
|
|
3838
|
+
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];
|
|
3839
|
+
}
|
|
3840
|
+
|
|
3841
|
+
// node_modules/@lit/localize/internal/id-generation.js
|
|
3842
|
+
var HASH_DELIMITER = "";
|
|
3843
|
+
var HTML_PREFIX = "h";
|
|
3844
|
+
var STRING_PREFIX = "s";
|
|
3845
|
+
function generateMsgId(strings, isHtmlTagged) {
|
|
3846
|
+
return (isHtmlTagged ? HTML_PREFIX : STRING_PREFIX) + fnv1a64(typeof strings === "string" ? strings : strings.join(HASH_DELIMITER));
|
|
3847
|
+
}
|
|
3848
|
+
|
|
3849
|
+
// node_modules/@lit/localize/internal/runtime-msg.js
|
|
3850
|
+
var expressionOrders = /* @__PURE__ */ new WeakMap();
|
|
3851
|
+
var hashCache = /* @__PURE__ */ new Map();
|
|
3852
|
+
function runtimeMsg(templates31, template, options) {
|
|
3853
|
+
if (templates31) {
|
|
3854
|
+
const id = options?.id ?? generateId(template);
|
|
3855
|
+
const localized = templates31[id];
|
|
3856
|
+
if (localized) {
|
|
3857
|
+
if (typeof localized === "string") {
|
|
3858
|
+
return localized;
|
|
3859
|
+
} else if ("strTag" in localized) {
|
|
3860
|
+
return joinStringsAndValues(
|
|
3861
|
+
localized.strings,
|
|
3862
|
+
// Cast `template` because its type wasn't automatically narrowed (but
|
|
3863
|
+
// we know it must be the same type as `localized`).
|
|
3864
|
+
template.values,
|
|
3865
|
+
localized.values
|
|
3866
|
+
);
|
|
3867
|
+
} else {
|
|
3868
|
+
let order = expressionOrders.get(localized);
|
|
3869
|
+
if (order === void 0) {
|
|
3870
|
+
order = localized.values;
|
|
3871
|
+
expressionOrders.set(localized, order);
|
|
3872
|
+
}
|
|
3873
|
+
return {
|
|
3874
|
+
...localized,
|
|
3875
|
+
values: order.map((i8) => template.values[i8])
|
|
3876
|
+
};
|
|
3877
|
+
}
|
|
3878
|
+
}
|
|
3879
|
+
}
|
|
3880
|
+
return defaultMsg(template);
|
|
3881
|
+
}
|
|
3882
|
+
function generateId(template) {
|
|
3883
|
+
const strings = typeof template === "string" ? template : template.strings;
|
|
3884
|
+
let id = hashCache.get(strings);
|
|
3885
|
+
if (id === void 0) {
|
|
3886
|
+
id = generateMsgId(strings, typeof template !== "string" && !("strTag" in template));
|
|
3887
|
+
hashCache.set(strings, id);
|
|
3888
|
+
}
|
|
3889
|
+
return id;
|
|
3890
|
+
}
|
|
3891
|
+
|
|
3892
|
+
// node_modules/@lit/localize/init/runtime.js
|
|
3893
|
+
function dispatchStatusEvent(detail) {
|
|
3894
|
+
window.dispatchEvent(new CustomEvent(LOCALE_STATUS_EVENT, { detail }));
|
|
3895
|
+
}
|
|
3896
|
+
var activeLocale = "";
|
|
3897
|
+
var loadingLocale;
|
|
3898
|
+
var sourceLocale2;
|
|
3899
|
+
var validLocales;
|
|
3900
|
+
var loadLocale;
|
|
3901
|
+
var templates;
|
|
3902
|
+
var loading = new Deferred();
|
|
3903
|
+
loading.resolve();
|
|
3904
|
+
var requestId = 0;
|
|
3905
|
+
var configureLocalization = (config) => {
|
|
3906
|
+
_installMsgImplementation((template, options) => runtimeMsg(templates, template, options));
|
|
3907
|
+
activeLocale = sourceLocale2 = config.sourceLocale;
|
|
3908
|
+
validLocales = new Set(config.targetLocales);
|
|
3909
|
+
validLocales.add(config.sourceLocale);
|
|
3910
|
+
loadLocale = config.loadLocale;
|
|
3911
|
+
return { getLocale, setLocale };
|
|
3912
|
+
};
|
|
3913
|
+
var getLocale = () => {
|
|
3914
|
+
return activeLocale;
|
|
3915
|
+
};
|
|
3916
|
+
var setLocale = (newLocale) => {
|
|
3917
|
+
if (newLocale === (loadingLocale ?? activeLocale)) {
|
|
3918
|
+
return loading.promise;
|
|
3919
|
+
}
|
|
3920
|
+
if (!validLocales || !loadLocale) {
|
|
3921
|
+
throw new Error("Internal error");
|
|
3922
|
+
}
|
|
3923
|
+
if (!validLocales.has(newLocale)) {
|
|
3924
|
+
throw new Error("Invalid locale code");
|
|
3925
|
+
}
|
|
3926
|
+
requestId++;
|
|
3927
|
+
const thisRequestId = requestId;
|
|
3928
|
+
loadingLocale = newLocale;
|
|
3929
|
+
if (loading.settled) {
|
|
3930
|
+
loading = new Deferred();
|
|
3931
|
+
}
|
|
3932
|
+
dispatchStatusEvent({ status: "loading", loadingLocale: newLocale });
|
|
3933
|
+
const localePromise = newLocale === sourceLocale2 ? (
|
|
3934
|
+
// We could switch to the source locale synchronously, but we prefer to
|
|
3935
|
+
// queue it on a microtask so that switching locales is consistently
|
|
3936
|
+
// asynchronous.
|
|
3937
|
+
Promise.resolve({ templates: void 0 })
|
|
3938
|
+
) : loadLocale(newLocale);
|
|
3939
|
+
localePromise.then((mod) => {
|
|
3940
|
+
if (requestId === thisRequestId) {
|
|
3941
|
+
activeLocale = newLocale;
|
|
3942
|
+
loadingLocale = void 0;
|
|
3943
|
+
templates = mod.templates;
|
|
3944
|
+
dispatchStatusEvent({ status: "ready", readyLocale: newLocale });
|
|
3945
|
+
loading.resolve();
|
|
3946
|
+
}
|
|
3947
|
+
}, (err) => {
|
|
3948
|
+
if (requestId === thisRequestId) {
|
|
3949
|
+
dispatchStatusEvent({
|
|
3950
|
+
status: "error",
|
|
3951
|
+
errorLocale: newLocale,
|
|
3952
|
+
errorMessage: err.toString()
|
|
3953
|
+
});
|
|
3954
|
+
loading.reject(err);
|
|
3955
|
+
}
|
|
3956
|
+
});
|
|
3957
|
+
return loading.promise;
|
|
3958
|
+
};
|
|
3959
|
+
|
|
3960
|
+
// import("./**/*.ts") in localization/generated/index.js
|
|
3961
|
+
var globImport_ts = __glob({
|
|
3962
|
+
"./bg.ts": () => Promise.resolve().then(() => (init_bg(), bg_exports)),
|
|
3963
|
+
"./cs.ts": () => Promise.resolve().then(() => (init_cs(), cs_exports)),
|
|
3964
|
+
"./da.ts": () => Promise.resolve().then(() => (init_da(), da_exports)),
|
|
3965
|
+
"./de.ts": () => Promise.resolve().then(() => (init_de(), de_exports)),
|
|
3966
|
+
"./el.ts": () => Promise.resolve().then(() => (init_el(), el_exports)),
|
|
3967
|
+
"./es.ts": () => Promise.resolve().then(() => (init_es(), es_exports)),
|
|
3968
|
+
"./et.ts": () => Promise.resolve().then(() => (init_et(), et_exports)),
|
|
3969
|
+
"./fi.ts": () => Promise.resolve().then(() => (init_fi(), fi_exports)),
|
|
3970
|
+
"./fr.ts": () => Promise.resolve().then(() => (init_fr(), fr_exports)),
|
|
3971
|
+
"./hu.ts": () => Promise.resolve().then(() => (init_hu(), hu_exports)),
|
|
3972
|
+
"./id.ts": () => Promise.resolve().then(() => (init_id(), id_exports)),
|
|
3973
|
+
"./it.ts": () => Promise.resolve().then(() => (init_it(), it_exports)),
|
|
3974
|
+
"./ja.ts": () => Promise.resolve().then(() => (init_ja(), ja_exports)),
|
|
3975
|
+
"./ko.ts": () => Promise.resolve().then(() => (init_ko(), ko_exports)),
|
|
3976
|
+
"./lt.ts": () => Promise.resolve().then(() => (init_lt(), lt_exports)),
|
|
3977
|
+
"./lv.ts": () => Promise.resolve().then(() => (init_lv(), lv_exports)),
|
|
3978
|
+
"./nb.ts": () => Promise.resolve().then(() => (init_nb(), nb_exports)),
|
|
3979
|
+
"./nl.ts": () => Promise.resolve().then(() => (init_nl(), nl_exports)),
|
|
3980
|
+
"./pl.ts": () => Promise.resolve().then(() => (init_pl(), pl_exports)),
|
|
3981
|
+
"./pt-BR.ts": () => Promise.resolve().then(() => (init_pt_BR(), pt_BR_exports)),
|
|
3982
|
+
"./pt-PT.ts": () => Promise.resolve().then(() => (init_pt_PT(), pt_PT_exports)),
|
|
3983
|
+
"./ro.ts": () => Promise.resolve().then(() => (init_ro(), ro_exports)),
|
|
3984
|
+
"./ru.ts": () => Promise.resolve().then(() => (init_ru(), ru_exports)),
|
|
3985
|
+
"./sk.ts": () => Promise.resolve().then(() => (init_sk(), sk_exports)),
|
|
3986
|
+
"./sl.ts": () => Promise.resolve().then(() => (init_sl(), sl_exports)),
|
|
3987
|
+
"./sv.ts": () => Promise.resolve().then(() => (init_sv(), sv_exports)),
|
|
3988
|
+
"./tr.ts": () => Promise.resolve().then(() => (init_tr(), tr_exports)),
|
|
3989
|
+
"./uk.ts": () => Promise.resolve().then(() => (init_uk(), uk_exports)),
|
|
3990
|
+
"./zh-hans.ts": () => Promise.resolve().then(() => (init_zh_hans(), zh_hans_exports))
|
|
3991
|
+
});
|
|
3992
|
+
|
|
3993
|
+
// localization/generated/index.js
|
|
3994
|
+
var generated_default = configureLocalization({ sourceLocale, targetLocales, loadLocale: (locale) => globImport_ts(`./${locale}.ts`) });
|
|
3995
|
+
|
|
3003
3996
|
// src/widgets/webwriter-choice-item.ts
|
|
3004
3997
|
var _checkbox_dec, _layout_dec, _valid_dec, _active_dec, _a2, _WebwriterChoiceItem_decorators, _init2, _active, _valid, _layout, _checkbox;
|
|
3005
|
-
_WebwriterChoiceItem_decorators = [
|
|
3006
|
-
var
|
|
3998
|
+
_WebwriterChoiceItem_decorators = [t5("webwriter-choice-item")];
|
|
3999
|
+
var WebwriterChoiceItem = class extends (_a2 = LitElementWw, _active_dec = [n6({ type: Boolean, attribute: false })], _valid_dec = [n6({ type: Boolean, attribute: false })], _layout_dec = [n6({ type: String, attribute: true, reflect: true })], _checkbox_dec = [e8("sl-checkbox")], _a2) {
|
|
3007
4000
|
constructor() {
|
|
3008
4001
|
super(...arguments);
|
|
3009
|
-
__publicField(this, "
|
|
4002
|
+
__publicField(this, "localize", generated_default);
|
|
3010
4003
|
__privateAdd(this, _active, __runInitializers(_init2, 8, this, false)), __runInitializers(_init2, 11, this);
|
|
3011
4004
|
__privateAdd(this, _valid, __runInitializers(_init2, 12, this)), __runInitializers(_init2, 15, this);
|
|
3012
4005
|
__privateAdd(this, _layout, __runInitializers(_init2, 16, this, "list")), __runInitializers(_init2, 19, this);
|
|
3013
|
-
__publicField(this, "handleClick", (
|
|
3014
|
-
const checkboxClicked =
|
|
4006
|
+
__publicField(this, "handleClick", (e10) => {
|
|
4007
|
+
const checkboxClicked = e10.composedPath().some((v3) => v3?.classList?.contains("checkbox__control"));
|
|
3015
4008
|
const editable = this.isContentEditable;
|
|
3016
4009
|
if (editable && !checkboxClicked) {
|
|
3017
|
-
|
|
4010
|
+
e10.preventDefault();
|
|
3018
4011
|
} else {
|
|
3019
|
-
|
|
4012
|
+
e10.stopImmediatePropagation();
|
|
3020
4013
|
}
|
|
3021
4014
|
});
|
|
3022
|
-
__publicField(this, "handleChange", (
|
|
4015
|
+
__publicField(this, "handleChange", (e10) => {
|
|
3023
4016
|
if (this.isContentEditable) {
|
|
3024
4017
|
this.valid = !this.valid;
|
|
3025
4018
|
} else {
|
|
@@ -3056,10 +4049,10 @@ var _WebwriterChoiceItem = class _WebwriterChoiceItem extends (_a2 = LitElementW
|
|
|
3056
4049
|
this.observer?.disconnect();
|
|
3057
4050
|
}
|
|
3058
4051
|
render() {
|
|
3059
|
-
return
|
|
3060
|
-
${this.valid !== void 0 && (this.active || !this.active && this.valid) ?
|
|
3061
|
-
<sl-checkbox class=${
|
|
3062
|
-
<slot part="slot" style=${
|
|
4052
|
+
return i7(this.layout, x`
|
|
4053
|
+
${this.valid !== void 0 && (this.active || !this.active && this.valid) ? x`<sl-icon class="solution user-only" ?data-valid=${this.valid} src=${this.valid ? check_default : x_default}></sl-icon>` : null}
|
|
4054
|
+
<sl-checkbox class=${e5({ valid: this.valid, active: this.active })} exportparts="base, control, label" @click=${this.handleClick} @sl-change=${this.handleChange} ?checked=${this.isContentEditable ? this.valid : this.active}>
|
|
4055
|
+
<slot part="slot" style=${o4({ "--ww-placeholder": `"${msg("Option")}"` })}></slot>
|
|
3063
4056
|
</sl-checkbox>
|
|
3064
4057
|
`);
|
|
3065
4058
|
}
|
|
@@ -3069,18 +4062,17 @@ _active = new WeakMap();
|
|
|
3069
4062
|
_valid = new WeakMap();
|
|
3070
4063
|
_layout = new WeakMap();
|
|
3071
4064
|
_checkbox = new WeakMap();
|
|
3072
|
-
__decorateElement(_init2, 4, "active", _active_dec,
|
|
3073
|
-
__decorateElement(_init2, 4, "valid", _valid_dec,
|
|
3074
|
-
__decorateElement(_init2, 4, "layout", _layout_dec,
|
|
3075
|
-
__decorateElement(_init2, 4, "checkbox", _checkbox_dec,
|
|
3076
|
-
|
|
3077
|
-
__publicField(
|
|
3078
|
-
__publicField(_WebwriterChoiceItem, "scopedElements", {
|
|
4065
|
+
__decorateElement(_init2, 4, "active", _active_dec, WebwriterChoiceItem, _active);
|
|
4066
|
+
__decorateElement(_init2, 4, "valid", _valid_dec, WebwriterChoiceItem, _valid);
|
|
4067
|
+
__decorateElement(_init2, 4, "layout", _layout_dec, WebwriterChoiceItem, _layout);
|
|
4068
|
+
__decorateElement(_init2, 4, "checkbox", _checkbox_dec, WebwriterChoiceItem, _checkbox);
|
|
4069
|
+
WebwriterChoiceItem = __decorateElement(_init2, 0, "WebwriterChoiceItem", _WebwriterChoiceItem_decorators, WebwriterChoiceItem);
|
|
4070
|
+
__publicField(WebwriterChoiceItem, "scopedElements", {
|
|
3079
4071
|
"sl-radio": SlRadio,
|
|
3080
4072
|
"sl-checkbox": SlCheckbox,
|
|
3081
4073
|
"sl-icon": SlIcon
|
|
3082
4074
|
});
|
|
3083
|
-
__publicField(
|
|
4075
|
+
__publicField(WebwriterChoiceItem, "styles", i`
|
|
3084
4076
|
|
|
3085
4077
|
:host {
|
|
3086
4078
|
width: 100%;
|
|
@@ -3216,8 +4208,7 @@ __publicField(_WebwriterChoiceItem, "styles", i`
|
|
|
3216
4208
|
}
|
|
3217
4209
|
}
|
|
3218
4210
|
`);
|
|
3219
|
-
__runInitializers(_init2, 1,
|
|
3220
|
-
var WebwriterChoiceItem = _WebwriterChoiceItem;
|
|
4211
|
+
__runInitializers(_init2, 1, WebwriterChoiceItem);
|
|
3221
4212
|
export {
|
|
3222
4213
|
WebwriterChoiceItem
|
|
3223
4214
|
};
|
|
@@ -3258,229 +4249,322 @@ lit-html/is-server.js:
|
|
|
3258
4249
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3259
4250
|
*)
|
|
3260
4251
|
|
|
3261
|
-
|
|
4252
|
+
lit-html/directive.js:
|
|
3262
4253
|
(**
|
|
3263
4254
|
* @license
|
|
3264
4255
|
* Copyright 2017 Google LLC
|
|
3265
4256
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3266
4257
|
*)
|
|
3267
4258
|
|
|
3268
|
-
|
|
4259
|
+
lit-html/directives/style-map.js:
|
|
3269
4260
|
(**
|
|
3270
4261
|
* @license
|
|
3271
|
-
* Copyright
|
|
4262
|
+
* Copyright 2018 Google LLC
|
|
3272
4263
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3273
4264
|
*)
|
|
3274
4265
|
|
|
3275
|
-
|
|
4266
|
+
lit-html/directives/class-map.js:
|
|
3276
4267
|
(**
|
|
3277
4268
|
* @license
|
|
3278
|
-
* Copyright
|
|
4269
|
+
* Copyright 2018 Google LLC
|
|
3279
4270
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3280
4271
|
*)
|
|
3281
4272
|
|
|
3282
|
-
@lit/
|
|
3283
|
-
(
|
|
3284
|
-
|
|
3285
|
-
|
|
3286
|
-
|
|
3287
|
-
|
|
4273
|
+
@webwriter/lit/index.js:
|
|
4274
|
+
(*! Bundled license information:
|
|
4275
|
+
|
|
4276
|
+
@lit/reactive-element/css-tag.js:
|
|
4277
|
+
(**
|
|
4278
|
+
* @license
|
|
4279
|
+
* Copyright 2019 Google LLC
|
|
4280
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4281
|
+
*)
|
|
4282
|
+
|
|
4283
|
+
@lit/reactive-element/reactive-element.js:
|
|
4284
|
+
(**
|
|
4285
|
+
* @license
|
|
4286
|
+
* Copyright 2017 Google LLC
|
|
4287
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4288
|
+
*)
|
|
4289
|
+
|
|
4290
|
+
lit-html/lit-html.js:
|
|
4291
|
+
(**
|
|
4292
|
+
* @license
|
|
4293
|
+
* Copyright 2017 Google LLC
|
|
4294
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4295
|
+
*)
|
|
4296
|
+
|
|
4297
|
+
lit-element/lit-element.js:
|
|
4298
|
+
(**
|
|
4299
|
+
* @license
|
|
4300
|
+
* Copyright 2017 Google LLC
|
|
4301
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4302
|
+
*)
|
|
4303
|
+
|
|
4304
|
+
lit-html/is-server.js:
|
|
4305
|
+
(**
|
|
4306
|
+
* @license
|
|
4307
|
+
* Copyright 2022 Google LLC
|
|
4308
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4309
|
+
*)
|
|
4310
|
+
|
|
4311
|
+
@lit/reactive-element/decorators/custom-element.js:
|
|
4312
|
+
(**
|
|
4313
|
+
* @license
|
|
4314
|
+
* Copyright 2017 Google LLC
|
|
4315
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4316
|
+
*)
|
|
4317
|
+
|
|
4318
|
+
@lit/reactive-element/decorators/property.js:
|
|
4319
|
+
(**
|
|
4320
|
+
* @license
|
|
4321
|
+
* Copyright 2017 Google LLC
|
|
4322
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4323
|
+
*)
|
|
4324
|
+
|
|
4325
|
+
@lit/reactive-element/decorators/state.js:
|
|
4326
|
+
(**
|
|
4327
|
+
* @license
|
|
4328
|
+
* Copyright 2017 Google LLC
|
|
4329
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4330
|
+
*)
|
|
4331
|
+
|
|
4332
|
+
@lit/reactive-element/decorators/event-options.js:
|
|
4333
|
+
(**
|
|
4334
|
+
* @license
|
|
4335
|
+
* Copyright 2017 Google LLC
|
|
4336
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4337
|
+
*)
|
|
4338
|
+
|
|
4339
|
+
@lit/reactive-element/decorators/base.js:
|
|
4340
|
+
(**
|
|
4341
|
+
* @license
|
|
4342
|
+
* Copyright 2017 Google LLC
|
|
4343
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4344
|
+
*)
|
|
4345
|
+
|
|
4346
|
+
@lit/reactive-element/decorators/query.js:
|
|
4347
|
+
(**
|
|
4348
|
+
* @license
|
|
4349
|
+
* Copyright 2017 Google LLC
|
|
4350
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4351
|
+
*)
|
|
4352
|
+
|
|
4353
|
+
@lit/reactive-element/decorators/query-all.js:
|
|
4354
|
+
(**
|
|
4355
|
+
* @license
|
|
4356
|
+
* Copyright 2017 Google LLC
|
|
4357
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4358
|
+
*)
|
|
4359
|
+
|
|
4360
|
+
@lit/reactive-element/decorators/query-async.js:
|
|
4361
|
+
(**
|
|
4362
|
+
* @license
|
|
4363
|
+
* Copyright 2017 Google LLC
|
|
4364
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4365
|
+
*)
|
|
4366
|
+
|
|
4367
|
+
@lit/reactive-element/decorators/query-assigned-elements.js:
|
|
4368
|
+
(**
|
|
4369
|
+
* @license
|
|
4370
|
+
* Copyright 2021 Google LLC
|
|
4371
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4372
|
+
*)
|
|
4373
|
+
|
|
4374
|
+
@lit/reactive-element/decorators/query-assigned-nodes.js:
|
|
4375
|
+
(**
|
|
4376
|
+
* @license
|
|
4377
|
+
* Copyright 2017 Google LLC
|
|
4378
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4379
|
+
*)
|
|
4380
|
+
*)
|
|
3288
4381
|
|
|
3289
|
-
@lit/reactive-element/decorators/
|
|
4382
|
+
@lit/reactive-element/decorators/custom-element.js:
|
|
3290
4383
|
(**
|
|
3291
4384
|
* @license
|
|
3292
4385
|
* Copyright 2017 Google LLC
|
|
3293
4386
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3294
4387
|
*)
|
|
3295
4388
|
|
|
3296
|
-
@lit/reactive-element/decorators/
|
|
4389
|
+
@lit/reactive-element/decorators/property.js:
|
|
3297
4390
|
(**
|
|
3298
4391
|
* @license
|
|
3299
4392
|
* Copyright 2017 Google LLC
|
|
3300
4393
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3301
4394
|
*)
|
|
3302
4395
|
|
|
3303
|
-
@lit/reactive-element/decorators/
|
|
4396
|
+
@lit/reactive-element/decorators/state.js:
|
|
3304
4397
|
(**
|
|
3305
4398
|
* @license
|
|
3306
4399
|
* Copyright 2017 Google LLC
|
|
3307
4400
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3308
4401
|
*)
|
|
3309
4402
|
|
|
3310
|
-
@lit/reactive-element/decorators/
|
|
4403
|
+
@lit/reactive-element/decorators/event-options.js:
|
|
3311
4404
|
(**
|
|
3312
4405
|
* @license
|
|
3313
4406
|
* Copyright 2017 Google LLC
|
|
3314
4407
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3315
4408
|
*)
|
|
3316
4409
|
|
|
3317
|
-
@lit/reactive-element/decorators/
|
|
3318
|
-
(**
|
|
3319
|
-
* @license
|
|
3320
|
-
* Copyright 2021 Google LLC
|
|
3321
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
3322
|
-
*)
|
|
3323
|
-
|
|
3324
|
-
@lit/reactive-element/decorators/query-assigned-nodes.js:
|
|
4410
|
+
@lit/reactive-element/decorators/base.js:
|
|
3325
4411
|
(**
|
|
3326
4412
|
* @license
|
|
3327
4413
|
* Copyright 2017 Google LLC
|
|
3328
4414
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3329
4415
|
*)
|
|
3330
|
-
*/
|
|
3331
|
-
/*! Bundled license information:
|
|
3332
4416
|
|
|
3333
|
-
@lit/reactive-element/
|
|
4417
|
+
@lit/reactive-element/decorators/query.js:
|
|
3334
4418
|
(**
|
|
3335
4419
|
* @license
|
|
3336
|
-
* Copyright
|
|
4420
|
+
* Copyright 2017 Google LLC
|
|
3337
4421
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3338
4422
|
*)
|
|
3339
4423
|
|
|
3340
|
-
@lit/reactive-element/
|
|
4424
|
+
@lit/reactive-element/decorators/query-all.js:
|
|
3341
4425
|
(**
|
|
3342
4426
|
* @license
|
|
3343
4427
|
* Copyright 2017 Google LLC
|
|
3344
4428
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3345
4429
|
*)
|
|
3346
4430
|
|
|
3347
|
-
lit-
|
|
4431
|
+
@lit/reactive-element/decorators/query-async.js:
|
|
3348
4432
|
(**
|
|
3349
4433
|
* @license
|
|
3350
4434
|
* Copyright 2017 Google LLC
|
|
3351
4435
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3352
4436
|
*)
|
|
3353
4437
|
|
|
3354
|
-
lit-element/
|
|
4438
|
+
@lit/reactive-element/decorators/query-assigned-elements.js:
|
|
3355
4439
|
(**
|
|
3356
4440
|
* @license
|
|
3357
|
-
* Copyright
|
|
4441
|
+
* Copyright 2021 Google LLC
|
|
3358
4442
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3359
4443
|
*)
|
|
3360
4444
|
|
|
3361
|
-
lit-
|
|
4445
|
+
@lit/reactive-element/decorators/query-assigned-nodes.js:
|
|
3362
4446
|
(**
|
|
3363
4447
|
* @license
|
|
3364
|
-
* Copyright
|
|
4448
|
+
* Copyright 2017 Google LLC
|
|
3365
4449
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3366
4450
|
*)
|
|
3367
4451
|
|
|
3368
|
-
lit-html/directive.js:
|
|
4452
|
+
lit-html/directive-helpers.js:
|
|
3369
4453
|
(**
|
|
3370
4454
|
* @license
|
|
3371
|
-
* Copyright
|
|
4455
|
+
* Copyright 2020 Google LLC
|
|
3372
4456
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3373
4457
|
*)
|
|
3374
4458
|
|
|
3375
|
-
lit-html/directives/
|
|
4459
|
+
lit-html/directives/if-defined.js:
|
|
3376
4460
|
(**
|
|
3377
4461
|
* @license
|
|
3378
4462
|
* Copyright 2018 Google LLC
|
|
3379
4463
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3380
4464
|
*)
|
|
3381
4465
|
|
|
3382
|
-
lit-html/directives/
|
|
4466
|
+
lit-html/directives/live.js:
|
|
3383
4467
|
(**
|
|
3384
4468
|
* @license
|
|
3385
|
-
* Copyright
|
|
4469
|
+
* Copyright 2020 Google LLC
|
|
3386
4470
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3387
4471
|
*)
|
|
3388
4472
|
|
|
3389
|
-
|
|
4473
|
+
lit-html/directives/keyed.js:
|
|
3390
4474
|
(**
|
|
3391
4475
|
* @license
|
|
3392
|
-
* Copyright
|
|
4476
|
+
* Copyright 2021 Google LLC
|
|
3393
4477
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3394
4478
|
*)
|
|
3395
4479
|
|
|
3396
|
-
@lit/
|
|
4480
|
+
@lit/localize/internal/locale-status-event.js:
|
|
3397
4481
|
(**
|
|
3398
4482
|
* @license
|
|
3399
|
-
* Copyright
|
|
4483
|
+
* Copyright 2021 Google LLC
|
|
3400
4484
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3401
4485
|
*)
|
|
3402
4486
|
|
|
3403
|
-
@lit/
|
|
4487
|
+
@lit/localize/internal/str-tag.js:
|
|
3404
4488
|
(**
|
|
3405
4489
|
* @license
|
|
3406
|
-
* Copyright
|
|
4490
|
+
* Copyright 2021 Google LLC
|
|
3407
4491
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3408
4492
|
*)
|
|
3409
4493
|
|
|
3410
|
-
@lit/
|
|
4494
|
+
@lit/localize/internal/types.js:
|
|
3411
4495
|
(**
|
|
3412
4496
|
* @license
|
|
3413
|
-
* Copyright
|
|
4497
|
+
* Copyright 2021 Google LLC
|
|
3414
4498
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3415
4499
|
*)
|
|
3416
4500
|
|
|
3417
|
-
@lit/
|
|
4501
|
+
@lit/localize/internal/default-msg.js:
|
|
3418
4502
|
(**
|
|
3419
4503
|
* @license
|
|
3420
|
-
* Copyright
|
|
4504
|
+
* Copyright 2021 Google LLC
|
|
3421
4505
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3422
4506
|
*)
|
|
3423
4507
|
|
|
3424
|
-
@lit/
|
|
4508
|
+
@lit/localize/internal/localized-controller.js:
|
|
3425
4509
|
(**
|
|
3426
4510
|
* @license
|
|
3427
|
-
* Copyright
|
|
4511
|
+
* Copyright 2021 Google LLC
|
|
3428
4512
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3429
4513
|
*)
|
|
3430
4514
|
|
|
3431
|
-
@lit/
|
|
4515
|
+
@lit/localize/internal/localized-decorator.js:
|
|
3432
4516
|
(**
|
|
3433
4517
|
* @license
|
|
3434
|
-
* Copyright
|
|
4518
|
+
* Copyright 2021 Google LLC
|
|
3435
4519
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3436
4520
|
*)
|
|
3437
4521
|
|
|
3438
|
-
@lit/
|
|
4522
|
+
@lit/localize/internal/deferred.js:
|
|
3439
4523
|
(**
|
|
3440
4524
|
* @license
|
|
3441
|
-
* Copyright
|
|
4525
|
+
* Copyright 2020 Google LLC
|
|
3442
4526
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3443
4527
|
*)
|
|
3444
4528
|
|
|
3445
|
-
@lit/
|
|
4529
|
+
@lit/localize/internal/fnv1a64.js:
|
|
3446
4530
|
(**
|
|
3447
4531
|
* @license
|
|
3448
|
-
* Copyright
|
|
3449
|
-
* SPDX-License-Identifier:
|
|
4532
|
+
* Copyright 2014 Travis Webb
|
|
4533
|
+
* SPDX-License-Identifier: MIT
|
|
3450
4534
|
*)
|
|
3451
4535
|
|
|
3452
|
-
@lit/
|
|
4536
|
+
@lit/localize/internal/id-generation.js:
|
|
3453
4537
|
(**
|
|
3454
4538
|
* @license
|
|
3455
|
-
* Copyright
|
|
4539
|
+
* Copyright 2020 Google LLC
|
|
3456
4540
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3457
4541
|
*)
|
|
3458
4542
|
|
|
3459
|
-
lit
|
|
4543
|
+
@lit/localize/internal/runtime-msg.js:
|
|
3460
4544
|
(**
|
|
3461
4545
|
* @license
|
|
3462
|
-
* Copyright
|
|
4546
|
+
* Copyright 2021 Google LLC
|
|
3463
4547
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3464
4548
|
*)
|
|
3465
4549
|
|
|
3466
|
-
lit
|
|
4550
|
+
@lit/localize/init/runtime.js:
|
|
3467
4551
|
(**
|
|
3468
4552
|
* @license
|
|
3469
|
-
* Copyright
|
|
4553
|
+
* Copyright 2021 Google LLC
|
|
3470
4554
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3471
4555
|
*)
|
|
3472
4556
|
|
|
3473
|
-
lit
|
|
4557
|
+
@lit/localize/init/transform.js:
|
|
3474
4558
|
(**
|
|
3475
4559
|
* @license
|
|
3476
|
-
* Copyright
|
|
4560
|
+
* Copyright 2021 Google LLC
|
|
3477
4561
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3478
4562
|
*)
|
|
3479
4563
|
|
|
3480
|
-
lit
|
|
4564
|
+
@lit/localize/lit-localize.js:
|
|
3481
4565
|
(**
|
|
3482
4566
|
* @license
|
|
3483
|
-
* Copyright
|
|
4567
|
+
* Copyright 2020 Google LLC
|
|
3484
4568
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
3485
4569
|
*)
|
|
3486
4570
|
*/
|