@unissey-web/web-components 3.8.0-beta.5
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/dist/button.js +44 -0
- package/dist/direction-card-f55e1936.js +24 -0
- package/dist/en-e76ed5a0.js +115 -0
- package/dist/file-upload.js +121 -0
- package/dist/full-capture.js +110 -0
- package/dist/image-capture-directions.js +85 -0
- package/dist/index.d.ts +1132 -0
- package/dist/index.js +203 -0
- package/dist/lit-element-ac3d3a27.js +479 -0
- package/dist/picture-editor.js +252 -0
- package/dist/picture-recorder.js +46 -0
- package/dist/reference-capture.js +296 -0
- package/dist/retry-result.js +154 -0
- package/dist/selfie-capture.js +146 -0
- package/dist/variables-09a3e162.js +98 -0
- package/dist/video-record-directions.js +100 -0
- package/dist/video-recorder-4b9e6a43.js +1129 -0
- package/dist/video-recorder.js +5 -0
- package/package.json +42 -0
|
@@ -0,0 +1,479 @@
|
|
|
1
|
+
function _assertThisInitialized(e) {
|
|
2
|
+
if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
3
|
+
return e;
|
|
4
|
+
}
|
|
5
|
+
function asyncGeneratorStep(n, t, e, r, o, a, c) {
|
|
6
|
+
try {
|
|
7
|
+
var i = n[a](c),
|
|
8
|
+
u = i.value;
|
|
9
|
+
} catch (n) {
|
|
10
|
+
return void e(n);
|
|
11
|
+
}
|
|
12
|
+
i.done ? t(u) : Promise.resolve(u).then(r, o);
|
|
13
|
+
}
|
|
14
|
+
function _asyncToGenerator(n) {
|
|
15
|
+
return function () {
|
|
16
|
+
var t = this,
|
|
17
|
+
e = arguments;
|
|
18
|
+
return new Promise(function (r, o) {
|
|
19
|
+
var a = n.apply(t, e);
|
|
20
|
+
function _next(n) {
|
|
21
|
+
asyncGeneratorStep(a, r, o, _next, _throw, "next", n);
|
|
22
|
+
}
|
|
23
|
+
function _throw(n) {
|
|
24
|
+
asyncGeneratorStep(a, r, o, _next, _throw, "throw", n);
|
|
25
|
+
}
|
|
26
|
+
_next(void 0);
|
|
27
|
+
});
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
function _callSuper(t, o, e) {
|
|
31
|
+
return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e));
|
|
32
|
+
}
|
|
33
|
+
function _classCallCheck(a, n) {
|
|
34
|
+
if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function");
|
|
35
|
+
}
|
|
36
|
+
function _defineProperties(e, r) {
|
|
37
|
+
for (var t = 0; t < r.length; t++) {
|
|
38
|
+
var o = r[t];
|
|
39
|
+
o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
function _createClass(e, r, t) {
|
|
43
|
+
return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", {
|
|
44
|
+
writable: !1
|
|
45
|
+
}), e;
|
|
46
|
+
}
|
|
47
|
+
function _defineProperty(e, r, t) {
|
|
48
|
+
return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, {
|
|
49
|
+
value: t,
|
|
50
|
+
enumerable: !0,
|
|
51
|
+
configurable: !0,
|
|
52
|
+
writable: !0
|
|
53
|
+
}) : e[r] = t, e;
|
|
54
|
+
}
|
|
55
|
+
function _get() {
|
|
56
|
+
return _get = "undefined" != typeof Reflect && Reflect.get ? Reflect.get.bind() : function (e, t, r) {
|
|
57
|
+
var p = _superPropBase(e, t);
|
|
58
|
+
if (p) {
|
|
59
|
+
var n = Object.getOwnPropertyDescriptor(p, t);
|
|
60
|
+
return n.get ? n.get.call(arguments.length < 3 ? e : r) : n.value;
|
|
61
|
+
}
|
|
62
|
+
}, _get.apply(null, arguments);
|
|
63
|
+
}
|
|
64
|
+
function _getPrototypeOf(t) {
|
|
65
|
+
return _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) {
|
|
66
|
+
return t.__proto__ || Object.getPrototypeOf(t);
|
|
67
|
+
}, _getPrototypeOf(t);
|
|
68
|
+
}
|
|
69
|
+
function _inherits(t, e) {
|
|
70
|
+
if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function");
|
|
71
|
+
t.prototype = Object.create(e && e.prototype, {
|
|
72
|
+
constructor: {
|
|
73
|
+
value: t,
|
|
74
|
+
writable: !0,
|
|
75
|
+
configurable: !0
|
|
76
|
+
}
|
|
77
|
+
}), Object.defineProperty(t, "prototype", {
|
|
78
|
+
writable: !1
|
|
79
|
+
}), e && _setPrototypeOf(t, e);
|
|
80
|
+
}
|
|
81
|
+
function _isNativeReflectConstruct() {
|
|
82
|
+
try {
|
|
83
|
+
var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
|
|
84
|
+
} catch (t) {}
|
|
85
|
+
return (_isNativeReflectConstruct = function () {
|
|
86
|
+
return !!t;
|
|
87
|
+
})();
|
|
88
|
+
}
|
|
89
|
+
function ownKeys(e, r) {
|
|
90
|
+
var t = Object.keys(e);
|
|
91
|
+
if (Object.getOwnPropertySymbols) {
|
|
92
|
+
var o = Object.getOwnPropertySymbols(e);
|
|
93
|
+
r && (o = o.filter(function (r) {
|
|
94
|
+
return Object.getOwnPropertyDescriptor(e, r).enumerable;
|
|
95
|
+
})), t.push.apply(t, o);
|
|
96
|
+
}
|
|
97
|
+
return t;
|
|
98
|
+
}
|
|
99
|
+
function _objectSpread2(e) {
|
|
100
|
+
for (var r = 1; r < arguments.length; r++) {
|
|
101
|
+
var t = null != arguments[r] ? arguments[r] : {};
|
|
102
|
+
r % 2 ? ownKeys(Object(t), !0).forEach(function (r) {
|
|
103
|
+
_defineProperty(e, r, t[r]);
|
|
104
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) {
|
|
105
|
+
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
|
|
106
|
+
});
|
|
107
|
+
}
|
|
108
|
+
return e;
|
|
109
|
+
}
|
|
110
|
+
function _possibleConstructorReturn(t, e) {
|
|
111
|
+
if (e && ("object" == typeof e || "function" == typeof e)) return e;
|
|
112
|
+
if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined");
|
|
113
|
+
return _assertThisInitialized(t);
|
|
114
|
+
}
|
|
115
|
+
function _regeneratorRuntime() {
|
|
116
|
+
_regeneratorRuntime = function () {
|
|
117
|
+
return e;
|
|
118
|
+
};
|
|
119
|
+
var t,
|
|
120
|
+
e = {},
|
|
121
|
+
r = Object.prototype,
|
|
122
|
+
n = r.hasOwnProperty,
|
|
123
|
+
o = Object.defineProperty || function (t, e, r) {
|
|
124
|
+
t[e] = r.value;
|
|
125
|
+
},
|
|
126
|
+
i = "function" == typeof Symbol ? Symbol : {},
|
|
127
|
+
a = i.iterator || "@@iterator",
|
|
128
|
+
c = i.asyncIterator || "@@asyncIterator",
|
|
129
|
+
u = i.toStringTag || "@@toStringTag";
|
|
130
|
+
function define(t, e, r) {
|
|
131
|
+
return Object.defineProperty(t, e, {
|
|
132
|
+
value: r,
|
|
133
|
+
enumerable: !0,
|
|
134
|
+
configurable: !0,
|
|
135
|
+
writable: !0
|
|
136
|
+
}), t[e];
|
|
137
|
+
}
|
|
138
|
+
try {
|
|
139
|
+
define({}, "");
|
|
140
|
+
} catch (t) {
|
|
141
|
+
define = function (t, e, r) {
|
|
142
|
+
return t[e] = r;
|
|
143
|
+
};
|
|
144
|
+
}
|
|
145
|
+
function wrap(t, e, r, n) {
|
|
146
|
+
var i = e && e.prototype instanceof Generator ? e : Generator,
|
|
147
|
+
a = Object.create(i.prototype),
|
|
148
|
+
c = new Context(n || []);
|
|
149
|
+
return o(a, "_invoke", {
|
|
150
|
+
value: makeInvokeMethod(t, r, c)
|
|
151
|
+
}), a;
|
|
152
|
+
}
|
|
153
|
+
function tryCatch(t, e, r) {
|
|
154
|
+
try {
|
|
155
|
+
return {
|
|
156
|
+
type: "normal",
|
|
157
|
+
arg: t.call(e, r)
|
|
158
|
+
};
|
|
159
|
+
} catch (t) {
|
|
160
|
+
return {
|
|
161
|
+
type: "throw",
|
|
162
|
+
arg: t
|
|
163
|
+
};
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
e.wrap = wrap;
|
|
167
|
+
var h = "suspendedStart",
|
|
168
|
+
l = "suspendedYield",
|
|
169
|
+
f = "executing",
|
|
170
|
+
s = "completed",
|
|
171
|
+
y = {};
|
|
172
|
+
function Generator() {}
|
|
173
|
+
function GeneratorFunction() {}
|
|
174
|
+
function GeneratorFunctionPrototype() {}
|
|
175
|
+
var p = {};
|
|
176
|
+
define(p, a, function () {
|
|
177
|
+
return this;
|
|
178
|
+
});
|
|
179
|
+
var d = Object.getPrototypeOf,
|
|
180
|
+
v = d && d(d(values([])));
|
|
181
|
+
v && v !== r && n.call(v, a) && (p = v);
|
|
182
|
+
var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p);
|
|
183
|
+
function defineIteratorMethods(t) {
|
|
184
|
+
["next", "throw", "return"].forEach(function (e) {
|
|
185
|
+
define(t, e, function (t) {
|
|
186
|
+
return this._invoke(e, t);
|
|
187
|
+
});
|
|
188
|
+
});
|
|
189
|
+
}
|
|
190
|
+
function AsyncIterator(t, e) {
|
|
191
|
+
function invoke(r, o, i, a) {
|
|
192
|
+
var c = tryCatch(t[r], t, o);
|
|
193
|
+
if ("throw" !== c.type) {
|
|
194
|
+
var u = c.arg,
|
|
195
|
+
h = u.value;
|
|
196
|
+
return h && "object" == typeof h && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) {
|
|
197
|
+
invoke("next", t, i, a);
|
|
198
|
+
}, function (t) {
|
|
199
|
+
invoke("throw", t, i, a);
|
|
200
|
+
}) : e.resolve(h).then(function (t) {
|
|
201
|
+
u.value = t, i(u);
|
|
202
|
+
}, function (t) {
|
|
203
|
+
return invoke("throw", t, i, a);
|
|
204
|
+
});
|
|
205
|
+
}
|
|
206
|
+
a(c.arg);
|
|
207
|
+
}
|
|
208
|
+
var r;
|
|
209
|
+
o(this, "_invoke", {
|
|
210
|
+
value: function (t, n) {
|
|
211
|
+
function callInvokeWithMethodAndArg() {
|
|
212
|
+
return new e(function (e, r) {
|
|
213
|
+
invoke(t, n, e, r);
|
|
214
|
+
});
|
|
215
|
+
}
|
|
216
|
+
return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg();
|
|
217
|
+
}
|
|
218
|
+
});
|
|
219
|
+
}
|
|
220
|
+
function makeInvokeMethod(e, r, n) {
|
|
221
|
+
var o = h;
|
|
222
|
+
return function (i, a) {
|
|
223
|
+
if (o === f) throw Error("Generator is already running");
|
|
224
|
+
if (o === s) {
|
|
225
|
+
if ("throw" === i) throw a;
|
|
226
|
+
return {
|
|
227
|
+
value: t,
|
|
228
|
+
done: !0
|
|
229
|
+
};
|
|
230
|
+
}
|
|
231
|
+
for (n.method = i, n.arg = a;;) {
|
|
232
|
+
var c = n.delegate;
|
|
233
|
+
if (c) {
|
|
234
|
+
var u = maybeInvokeDelegate(c, n);
|
|
235
|
+
if (u) {
|
|
236
|
+
if (u === y) continue;
|
|
237
|
+
return u;
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) {
|
|
241
|
+
if (o === h) throw o = s, n.arg;
|
|
242
|
+
n.dispatchException(n.arg);
|
|
243
|
+
} else "return" === n.method && n.abrupt("return", n.arg);
|
|
244
|
+
o = f;
|
|
245
|
+
var p = tryCatch(e, r, n);
|
|
246
|
+
if ("normal" === p.type) {
|
|
247
|
+
if (o = n.done ? s : l, p.arg === y) continue;
|
|
248
|
+
return {
|
|
249
|
+
value: p.arg,
|
|
250
|
+
done: n.done
|
|
251
|
+
};
|
|
252
|
+
}
|
|
253
|
+
"throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg);
|
|
254
|
+
}
|
|
255
|
+
};
|
|
256
|
+
}
|
|
257
|
+
function maybeInvokeDelegate(e, r) {
|
|
258
|
+
var n = r.method,
|
|
259
|
+
o = e.iterator[n];
|
|
260
|
+
if (o === t) return r.delegate = null, "throw" === n && e.iterator.return && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y;
|
|
261
|
+
var i = tryCatch(o, e.iterator, r.arg);
|
|
262
|
+
if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y;
|
|
263
|
+
var a = i.arg;
|
|
264
|
+
return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y);
|
|
265
|
+
}
|
|
266
|
+
function pushTryEntry(t) {
|
|
267
|
+
var e = {
|
|
268
|
+
tryLoc: t[0]
|
|
269
|
+
};
|
|
270
|
+
1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e);
|
|
271
|
+
}
|
|
272
|
+
function resetTryEntry(t) {
|
|
273
|
+
var e = t.completion || {};
|
|
274
|
+
e.type = "normal", delete e.arg, t.completion = e;
|
|
275
|
+
}
|
|
276
|
+
function Context(t) {
|
|
277
|
+
this.tryEntries = [{
|
|
278
|
+
tryLoc: "root"
|
|
279
|
+
}], t.forEach(pushTryEntry, this), this.reset(!0);
|
|
280
|
+
}
|
|
281
|
+
function values(e) {
|
|
282
|
+
if (e || "" === e) {
|
|
283
|
+
var r = e[a];
|
|
284
|
+
if (r) return r.call(e);
|
|
285
|
+
if ("function" == typeof e.next) return e;
|
|
286
|
+
if (!isNaN(e.length)) {
|
|
287
|
+
var o = -1,
|
|
288
|
+
i = function next() {
|
|
289
|
+
for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next;
|
|
290
|
+
return next.value = t, next.done = !0, next;
|
|
291
|
+
};
|
|
292
|
+
return i.next = i;
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
throw new TypeError(typeof e + " is not iterable");
|
|
296
|
+
}
|
|
297
|
+
return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", {
|
|
298
|
+
value: GeneratorFunctionPrototype,
|
|
299
|
+
configurable: !0
|
|
300
|
+
}), o(GeneratorFunctionPrototype, "constructor", {
|
|
301
|
+
value: GeneratorFunction,
|
|
302
|
+
configurable: !0
|
|
303
|
+
}), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) {
|
|
304
|
+
var e = "function" == typeof t && t.constructor;
|
|
305
|
+
return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name));
|
|
306
|
+
}, e.mark = function (t) {
|
|
307
|
+
return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t;
|
|
308
|
+
}, e.awrap = function (t) {
|
|
309
|
+
return {
|
|
310
|
+
__await: t
|
|
311
|
+
};
|
|
312
|
+
}, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () {
|
|
313
|
+
return this;
|
|
314
|
+
}), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) {
|
|
315
|
+
void 0 === i && (i = Promise);
|
|
316
|
+
var a = new AsyncIterator(wrap(t, r, n, o), i);
|
|
317
|
+
return e.isGeneratorFunction(r) ? a : a.next().then(function (t) {
|
|
318
|
+
return t.done ? t.value : a.next();
|
|
319
|
+
});
|
|
320
|
+
}, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () {
|
|
321
|
+
return this;
|
|
322
|
+
}), define(g, "toString", function () {
|
|
323
|
+
return "[object Generator]";
|
|
324
|
+
}), e.keys = function (t) {
|
|
325
|
+
var e = Object(t),
|
|
326
|
+
r = [];
|
|
327
|
+
for (var n in e) r.push(n);
|
|
328
|
+
return r.reverse(), function next() {
|
|
329
|
+
for (; r.length;) {
|
|
330
|
+
var t = r.pop();
|
|
331
|
+
if (t in e) return next.value = t, next.done = !1, next;
|
|
332
|
+
}
|
|
333
|
+
return next.done = !0, next;
|
|
334
|
+
};
|
|
335
|
+
}, e.values = values, Context.prototype = {
|
|
336
|
+
constructor: Context,
|
|
337
|
+
reset: function (e) {
|
|
338
|
+
if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t);
|
|
339
|
+
},
|
|
340
|
+
stop: function () {
|
|
341
|
+
this.done = !0;
|
|
342
|
+
var t = this.tryEntries[0].completion;
|
|
343
|
+
if ("throw" === t.type) throw t.arg;
|
|
344
|
+
return this.rval;
|
|
345
|
+
},
|
|
346
|
+
dispatchException: function (e) {
|
|
347
|
+
if (this.done) throw e;
|
|
348
|
+
var r = this;
|
|
349
|
+
function handle(n, o) {
|
|
350
|
+
return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o;
|
|
351
|
+
}
|
|
352
|
+
for (var o = this.tryEntries.length - 1; o >= 0; --o) {
|
|
353
|
+
var i = this.tryEntries[o],
|
|
354
|
+
a = i.completion;
|
|
355
|
+
if ("root" === i.tryLoc) return handle("end");
|
|
356
|
+
if (i.tryLoc <= this.prev) {
|
|
357
|
+
var c = n.call(i, "catchLoc"),
|
|
358
|
+
u = n.call(i, "finallyLoc");
|
|
359
|
+
if (c && u) {
|
|
360
|
+
if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
|
|
361
|
+
if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
|
|
362
|
+
} else if (c) {
|
|
363
|
+
if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
|
|
364
|
+
} else {
|
|
365
|
+
if (!u) throw Error("try statement without catch or finally");
|
|
366
|
+
if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
},
|
|
371
|
+
abrupt: function (t, e) {
|
|
372
|
+
for (var r = this.tryEntries.length - 1; r >= 0; --r) {
|
|
373
|
+
var o = this.tryEntries[r];
|
|
374
|
+
if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) {
|
|
375
|
+
var i = o;
|
|
376
|
+
break;
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null);
|
|
380
|
+
var a = i ? i.completion : {};
|
|
381
|
+
return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a);
|
|
382
|
+
},
|
|
383
|
+
complete: function (t, e) {
|
|
384
|
+
if ("throw" === t.type) throw t.arg;
|
|
385
|
+
return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y;
|
|
386
|
+
},
|
|
387
|
+
finish: function (t) {
|
|
388
|
+
for (var e = this.tryEntries.length - 1; e >= 0; --e) {
|
|
389
|
+
var r = this.tryEntries[e];
|
|
390
|
+
if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y;
|
|
391
|
+
}
|
|
392
|
+
},
|
|
393
|
+
catch: function (t) {
|
|
394
|
+
for (var e = this.tryEntries.length - 1; e >= 0; --e) {
|
|
395
|
+
var r = this.tryEntries[e];
|
|
396
|
+
if (r.tryLoc === t) {
|
|
397
|
+
var n = r.completion;
|
|
398
|
+
if ("throw" === n.type) {
|
|
399
|
+
var o = n.arg;
|
|
400
|
+
resetTryEntry(r);
|
|
401
|
+
}
|
|
402
|
+
return o;
|
|
403
|
+
}
|
|
404
|
+
}
|
|
405
|
+
throw Error("illegal catch attempt");
|
|
406
|
+
},
|
|
407
|
+
delegateYield: function (e, r, n) {
|
|
408
|
+
return this.delegate = {
|
|
409
|
+
iterator: values(e),
|
|
410
|
+
resultName: r,
|
|
411
|
+
nextLoc: n
|
|
412
|
+
}, "next" === this.method && (this.arg = t), y;
|
|
413
|
+
}
|
|
414
|
+
}, e;
|
|
415
|
+
}
|
|
416
|
+
function _setPrototypeOf(t, e) {
|
|
417
|
+
return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) {
|
|
418
|
+
return t.__proto__ = e, t;
|
|
419
|
+
}, _setPrototypeOf(t, e);
|
|
420
|
+
}
|
|
421
|
+
function _superPropBase(t, o) {
|
|
422
|
+
for (; !{}.hasOwnProperty.call(t, o) && null !== (t = _getPrototypeOf(t)););
|
|
423
|
+
return t;
|
|
424
|
+
}
|
|
425
|
+
function _superPropGet(t, e, r, o) {
|
|
426
|
+
var p = _get(_getPrototypeOf(1 & o ? t.prototype : t), e, r);
|
|
427
|
+
return 2 & o ? function (t) {
|
|
428
|
+
return p.apply(r, t);
|
|
429
|
+
} : p;
|
|
430
|
+
}
|
|
431
|
+
function _taggedTemplateLiteral(e, t) {
|
|
432
|
+
return t || (t = e.slice(0)), Object.freeze(Object.defineProperties(e, {
|
|
433
|
+
raw: {
|
|
434
|
+
value: Object.freeze(t)
|
|
435
|
+
}
|
|
436
|
+
}));
|
|
437
|
+
}
|
|
438
|
+
function _toPrimitive(t, r) {
|
|
439
|
+
if ("object" != typeof t || !t) return t;
|
|
440
|
+
var e = t[Symbol.toPrimitive];
|
|
441
|
+
if (void 0 !== e) {
|
|
442
|
+
var i = e.call(t, r || "default");
|
|
443
|
+
if ("object" != typeof i) return i;
|
|
444
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
445
|
+
}
|
|
446
|
+
return ("string" === r ? String : Number)(t);
|
|
447
|
+
}
|
|
448
|
+
function _toPropertyKey(t) {
|
|
449
|
+
var i = _toPrimitive(t, "string");
|
|
450
|
+
return "symbol" == typeof i ? i : i + "";
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
/**
|
|
454
|
+
* @license
|
|
455
|
+
* Copyright 2019 Google LLC
|
|
456
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
457
|
+
*/
|
|
458
|
+
const t$1=window,e$2=t$1.ShadowRoot&&(void 0===t$1.ShadyCSS||t$1.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,s$3=Symbol(),n$3=new WeakMap;let o$3 = class o{constructor(t,e,n){if(this._$cssResult$=!0,n!==s$3)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=t,this.t=e;}get styleSheet(){let t=this.o;const s=this.t;if(e$2&&void 0===t){const e=void 0!==s&&1===s.length;e&&(t=n$3.get(s)),void 0===t&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),e&&n$3.set(s,t));}return t}toString(){return this.cssText}};const r$2=t=>new o$3("string"==typeof t?t:t+"",void 0,s$3),i$1=(t,...e)=>{const n=1===t.length?t[0]:e.reduce(((e,s,n)=>e+(t=>{if(!0===t._$cssResult$)return t.cssText;if("number"==typeof t)return t;throw Error("Value passed to 'css' function must be a 'css' function result: "+t+". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.")})(s)+t[n+1]),t[0]);return new o$3(n,t,s$3)},S$1=(s,n)=>{e$2?s.adoptedStyleSheets=n.map((t=>t instanceof CSSStyleSheet?t:t.styleSheet)):n.forEach((e=>{const n=document.createElement("style"),o=t$1.litNonce;void 0!==o&&n.setAttribute("nonce",o),n.textContent=e.cssText,s.appendChild(n);}));},c$1=e$2?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e="";for(const s of t.cssRules)e+=s.cssText;return r$2(e)})(t):t;
|
|
459
|
+
|
|
460
|
+
/**
|
|
461
|
+
* @license
|
|
462
|
+
* Copyright 2017 Google LLC
|
|
463
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
464
|
+
*/var s$2;const e$1=window,r$1=e$1.trustedTypes,h$1=r$1?r$1.emptyScript:"",o$2=e$1.reactiveElementPolyfillSupport,n$2={toAttribute(t,i){switch(i){case Boolean:t=t?h$1:null;break;case Object:case Array:t=null==t?t:JSON.stringify(t);}return t},fromAttribute(t,i){let s=t;switch(i){case Boolean:s=null!==t;break;case Number:s=null===t?null:Number(t);break;case Object:case Array:try{s=JSON.parse(t);}catch(t){s=null;}}return s}},a$1=(t,i)=>i!==t&&(i==i||t==t),l$2={attribute:!0,type:String,converter:n$2,reflect:!1,hasChanged:a$1},d$1="finalized";let u$1 = class u extends HTMLElement{constructor(){super(),this._$Ei=new Map,this.isUpdatePending=!1,this.hasUpdated=!1,this._$El=null,this._$Eu();}static addInitializer(t){var i;this.finalize(),(null!==(i=this.h)&&void 0!==i?i:this.h=[]).push(t);}static get observedAttributes(){this.finalize();const t=[];return this.elementProperties.forEach(((i,s)=>{const e=this._$Ep(s,i);void 0!==e&&(this._$Ev.set(e,s),t.push(e));})),t}static createProperty(t,i=l$2){if(i.state&&(i.attribute=!1),this.finalize(),this.elementProperties.set(t,i),!i.noAccessor&&!this.prototype.hasOwnProperty(t)){const s="symbol"==typeof t?Symbol():"__"+t,e=this.getPropertyDescriptor(t,s,i);void 0!==e&&Object.defineProperty(this.prototype,t,e);}}static getPropertyDescriptor(t,i,s){return {get(){return this[i]},set(e){const r=this[t];this[i]=e,this.requestUpdate(t,r,s);},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)||l$2}static finalize(){if(this.hasOwnProperty(d$1))return !1;this[d$1]=!0;const t=Object.getPrototypeOf(this);if(t.finalize(),void 0!==t.h&&(this.h=[...t.h]),this.elementProperties=new Map(t.elementProperties),this._$Ev=new Map,this.hasOwnProperty("properties")){const t=this.properties,i=[...Object.getOwnPropertyNames(t),...Object.getOwnPropertySymbols(t)];for(const s of i)this.createProperty(s,t[s]);}return this.elementStyles=this.finalizeStyles(this.styles),!0}static finalizeStyles(i){const s=[];if(Array.isArray(i)){const e=new Set(i.flat(1/0).reverse());for(const i of e)s.unshift(c$1(i));}else void 0!==i&&s.push(c$1(i));return s}static _$Ep(t,i){const s=i.attribute;return !1===s?void 0:"string"==typeof s?s:"string"==typeof t?t.toLowerCase():void 0}_$Eu(){var t;this._$E_=new Promise((t=>this.enableUpdating=t)),this._$AL=new Map,this._$Eg(),this.requestUpdate(),null===(t=this.constructor.h)||void 0===t||t.forEach((t=>t(this)));}addController(t){var i,s;(null!==(i=this._$ES)&&void 0!==i?i:this._$ES=[]).push(t),void 0!==this.renderRoot&&this.isConnected&&(null===(s=t.hostConnected)||void 0===s||s.call(t));}removeController(t){var i;null===(i=this._$ES)||void 0===i||i.splice(this._$ES.indexOf(t)>>>0,1);}_$Eg(){this.constructor.elementProperties.forEach(((t,i)=>{this.hasOwnProperty(i)&&(this._$Ei.set(i,this[i]),delete this[i]);}));}createRenderRoot(){var t;const s=null!==(t=this.shadowRoot)&&void 0!==t?t:this.attachShadow(this.constructor.shadowRootOptions);return S$1(s,this.constructor.elementStyles),s}connectedCallback(){var t;void 0===this.renderRoot&&(this.renderRoot=this.createRenderRoot()),this.enableUpdating(!0),null===(t=this._$ES)||void 0===t||t.forEach((t=>{var i;return null===(i=t.hostConnected)||void 0===i?void 0:i.call(t)}));}enableUpdating(t){}disconnectedCallback(){var t;null===(t=this._$ES)||void 0===t||t.forEach((t=>{var i;return null===(i=t.hostDisconnected)||void 0===i?void 0:i.call(t)}));}attributeChangedCallback(t,i,s){this._$AK(t,s);}_$EO(t,i,s=l$2){var e;const r=this.constructor._$Ep(t,s);if(void 0!==r&&!0===s.reflect){const h=(void 0!==(null===(e=s.converter)||void 0===e?void 0:e.toAttribute)?s.converter:n$2).toAttribute(i,s.type);this._$El=t,null==h?this.removeAttribute(r):this.setAttribute(r,h),this._$El=null;}}_$AK(t,i){var s;const e=this.constructor,r=e._$Ev.get(t);if(void 0!==r&&this._$El!==r){const t=e.getPropertyOptions(r),h="function"==typeof t.converter?{fromAttribute:t.converter}:void 0!==(null===(s=t.converter)||void 0===s?void 0:s.fromAttribute)?t.converter:n$2;this._$El=r,this[r]=h.fromAttribute(i,t.type),this._$El=null;}}requestUpdate(t,i,s){let e=!0;void 0!==t&&(((s=s||this.constructor.getPropertyOptions(t)).hasChanged||a$1)(this[t],i)?(this._$AL.has(t)||this._$AL.set(t,i),!0===s.reflect&&this._$El!==t&&(void 0===this._$EC&&(this._$EC=new Map),this._$EC.set(t,s))):e=!1),!this.isUpdatePending&&e&&(this._$E_=this._$Ej());}async _$Ej(){this.isUpdatePending=!0;try{await this._$E_;}catch(t){Promise.reject(t);}const t=this.scheduleUpdate();return null!=t&&await t,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){var t;if(!this.isUpdatePending)return;this.hasUpdated,this._$Ei&&(this._$Ei.forEach(((t,i)=>this[i]=t)),this._$Ei=void 0);let i=!1;const s=this._$AL;try{i=this.shouldUpdate(s),i?(this.willUpdate(s),null===(t=this._$ES)||void 0===t||t.forEach((t=>{var i;return null===(i=t.hostUpdate)||void 0===i?void 0:i.call(t)})),this.update(s)):this._$Ek();}catch(t){throw i=!1,this._$Ek(),t}i&&this._$AE(s);}willUpdate(t){}_$AE(t){var i;null===(i=this._$ES)||void 0===i||i.forEach((t=>{var i;return null===(i=t.hostUpdated)||void 0===i?void 0:i.call(t)})),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t);}_$Ek(){this._$AL=new Map,this.isUpdatePending=!1;}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$E_}shouldUpdate(t){return !0}update(t){void 0!==this._$EC&&(this._$EC.forEach(((t,i)=>this._$EO(i,this[i],t))),this._$EC=void 0),this._$Ek();}updated(t){}firstUpdated(t){}};u$1[d$1]=!0,u$1.elementProperties=new Map,u$1.elementStyles=[],u$1.shadowRootOptions={mode:"open"},null==o$2||o$2({ReactiveElement:u$1}),(null!==(s$2=e$1.reactiveElementVersions)&&void 0!==s$2?s$2:e$1.reactiveElementVersions=[]).push("1.6.3");
|
|
465
|
+
|
|
466
|
+
/**
|
|
467
|
+
* @license
|
|
468
|
+
* Copyright 2017 Google LLC
|
|
469
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
470
|
+
*/
|
|
471
|
+
var t;const i=window,s$1=i.trustedTypes,e=s$1?s$1.createPolicy("lit-html",{createHTML:t=>t}):void 0,o$1="$lit$",n$1=`lit$${(Math.random()+"").slice(9)}$`,l$1="?"+n$1,h=`<${l$1}>`,r=document,u=()=>r.createComment(""),d=t=>null===t||"object"!=typeof t&&"function"!=typeof t,c=Array.isArray,v=t=>c(t)||"function"==typeof(null==t?void 0:t[Symbol.iterator]),a="[ \t\n\f\r]",f=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,_=/-->/g,m=/>/g,p=RegExp(`>|${a}(?:([^\\s"'>=/]+)(${a}*=${a}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),g=/'/g,$=/"/g,y=/^(?:script|style|textarea|title)$/i,w=t=>(i,...s)=>({_$litType$:t,strings:i,values:s}),x=w(1),T=Symbol.for("lit-noChange"),A=Symbol.for("lit-nothing"),E=new WeakMap,C=r.createTreeWalker(r,129,null,!1);function P(t,i){if(!Array.isArray(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return void 0!==e?e.createHTML(i):i}const V=(t,i)=>{const s=t.length-1,e=[];let l,r=2===i?"<svg>":"",u=f;for(let i=0;i<s;i++){const s=t[i];let d,c,v=-1,a=0;for(;a<s.length&&(u.lastIndex=a,c=u.exec(s),null!==c);)a=u.lastIndex,u===f?"!--"===c[1]?u=_:void 0!==c[1]?u=m:void 0!==c[2]?(y.test(c[2])&&(l=RegExp("</"+c[2],"g")),u=p):void 0!==c[3]&&(u=p):u===p?">"===c[0]?(u=null!=l?l:f,v=-1):void 0===c[1]?v=-2:(v=u.lastIndex-c[2].length,d=c[1],u=void 0===c[3]?p:'"'===c[3]?$:g):u===$||u===g?u=p:u===_||u===m?u=f:(u=p,l=void 0);const w=u===p&&t[i+1].startsWith("/>")?" ":"";r+=u===f?s+h:v>=0?(e.push(d),s.slice(0,v)+o$1+s.slice(v)+n$1+w):s+n$1+(-2===v?(e.push(void 0),i):w);}return [P(t,r+(t[s]||"<?>")+(2===i?"</svg>":"")),e]};class N{constructor({strings:t,_$litType$:i},e){let h;this.parts=[];let r=0,d=0;const c=t.length-1,v=this.parts,[a,f]=V(t,i);if(this.el=N.createElement(a,e),C.currentNode=this.el.content,2===i){const t=this.el.content,i=t.firstChild;i.remove(),t.append(...i.childNodes);}for(;null!==(h=C.nextNode())&&v.length<c;){if(1===h.nodeType){if(h.hasAttributes()){const t=[];for(const i of h.getAttributeNames())if(i.endsWith(o$1)||i.startsWith(n$1)){const s=f[d++];if(t.push(i),void 0!==s){const t=h.getAttribute(s.toLowerCase()+o$1).split(n$1),i=/([.?@])?(.*)/.exec(s);v.push({type:1,index:r,name:i[2],strings:t,ctor:"."===i[1]?H:"?"===i[1]?L:"@"===i[1]?z:k});}else v.push({type:6,index:r});}for(const i of t)h.removeAttribute(i);}if(y.test(h.tagName)){const t=h.textContent.split(n$1),i=t.length-1;if(i>0){h.textContent=s$1?s$1.emptyScript:"";for(let s=0;s<i;s++)h.append(t[s],u()),C.nextNode(),v.push({type:2,index:++r});h.append(t[i],u());}}}else if(8===h.nodeType)if(h.data===l$1)v.push({type:2,index:r});else {let t=-1;for(;-1!==(t=h.data.indexOf(n$1,t+1));)v.push({type:7,index:r}),t+=n$1.length-1;}r++;}}static createElement(t,i){const s=r.createElement("template");return s.innerHTML=t,s}}function S(t,i,s=t,e){var o,n,l,h;if(i===T)return i;let r=void 0!==e?null===(o=s._$Co)||void 0===o?void 0:o[e]:s._$Cl;const u=d(i)?void 0:i._$litDirective$;return (null==r?void 0:r.constructor)!==u&&(null===(n=null==r?void 0:r._$AO)||void 0===n||n.call(r,!1),void 0===u?r=void 0:(r=new u(t),r._$AT(t,s,e)),void 0!==e?(null!==(l=(h=s)._$Co)&&void 0!==l?l:h._$Co=[])[e]=r:s._$Cl=r),void 0!==r&&(i=S(t,r._$AS(t,i.values),r,e)),i}class M{constructor(t,i){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=i;}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){var i;const{el:{content:s},parts:e}=this._$AD,o=(null!==(i=null==t?void 0:t.creationScope)&&void 0!==i?i:r).importNode(s,!0);C.currentNode=o;let n=C.nextNode(),l=0,h=0,u=e[0];for(;void 0!==u;){if(l===u.index){let i;2===u.type?i=new R(n,n.nextSibling,this,t):1===u.type?i=new u.ctor(n,u.name,u.strings,this,t):6===u.type&&(i=new Z(n,this,t)),this._$AV.push(i),u=e[++h];}l!==(null==u?void 0:u.index)&&(n=C.nextNode(),l++);}return C.currentNode=r,o}v(t){let i=0;for(const s of this._$AV)void 0!==s&&(void 0!==s.strings?(s._$AI(t,s,i),i+=s.strings.length-2):s._$AI(t[i])),i++;}}class R{constructor(t,i,s,e){var o;this.type=2,this._$AH=A,this._$AN=void 0,this._$AA=t,this._$AB=i,this._$AM=s,this.options=e,this._$Cp=null===(o=null==e?void 0:e.isConnected)||void 0===o||o;}get _$AU(){var t,i;return null!==(i=null===(t=this._$AM)||void 0===t?void 0:t._$AU)&&void 0!==i?i:this._$Cp}get parentNode(){let t=this._$AA.parentNode;const i=this._$AM;return void 0!==i&&11===(null==t?void 0:t.nodeType)&&(t=i.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,i=this){t=S(this,t,i),d(t)?t===A||null==t||""===t?(this._$AH!==A&&this._$AR(),this._$AH=A):t!==this._$AH&&t!==T&&this._(t):void 0!==t._$litType$?this.g(t):void 0!==t.nodeType?this.$(t):v(t)?this.T(t):this._(t);}k(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}$(t){this._$AH!==t&&(this._$AR(),this._$AH=this.k(t));}_(t){this._$AH!==A&&d(this._$AH)?this._$AA.nextSibling.data=t:this.$(r.createTextNode(t)),this._$AH=t;}g(t){var i;const{values:s,_$litType$:e}=t,o="number"==typeof e?this._$AC(t):(void 0===e.el&&(e.el=N.createElement(P(e.h,e.h[0]),this.options)),e);if((null===(i=this._$AH)||void 0===i?void 0:i._$AD)===o)this._$AH.v(s);else {const t=new M(o,this),i=t.u(this.options);t.v(s),this.$(i),this._$AH=t;}}_$AC(t){let i=E.get(t.strings);return void 0===i&&E.set(t.strings,i=new N(t)),i}T(t){c(this._$AH)||(this._$AH=[],this._$AR());const i=this._$AH;let s,e=0;for(const o of t)e===i.length?i.push(s=new R(this.k(u()),this.k(u()),this,this.options)):s=i[e],s._$AI(o),e++;e<i.length&&(this._$AR(s&&s._$AB.nextSibling,e),i.length=e);}_$AR(t=this._$AA.nextSibling,i){var s;for(null===(s=this._$AP)||void 0===s||s.call(this,!1,!0,i);t&&t!==this._$AB;){const i=t.nextSibling;t.remove(),t=i;}}setConnected(t){var i;void 0===this._$AM&&(this._$Cp=t,null===(i=this._$AP)||void 0===i||i.call(this,t));}}class k{constructor(t,i,s,e,o){this.type=1,this._$AH=A,this._$AN=void 0,this.element=t,this.name=i,this._$AM=e,this.options=o,s.length>2||""!==s[0]||""!==s[1]?(this._$AH=Array(s.length-1).fill(new String),this.strings=s):this._$AH=A;}get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}_$AI(t,i=this,s,e){const o=this.strings;let n=!1;if(void 0===o)t=S(this,t,i,0),n=!d(t)||t!==this._$AH&&t!==T,n&&(this._$AH=t);else {const e=t;let l,h;for(t=o[0],l=0;l<o.length-1;l++)h=S(this,e[s+l],i,l),h===T&&(h=this._$AH[l]),n||(n=!d(h)||h!==this._$AH[l]),h===A?t=A:t!==A&&(t+=(null!=h?h:"")+o[l+1]),this._$AH[l]=h;}n&&!e&&this.j(t);}j(t){t===A?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,null!=t?t:"");}}class H extends k{constructor(){super(...arguments),this.type=3;}j(t){this.element[this.name]=t===A?void 0:t;}}const I=s$1?s$1.emptyScript:"";class L extends k{constructor(){super(...arguments),this.type=4;}j(t){t&&t!==A?this.element.setAttribute(this.name,I):this.element.removeAttribute(this.name);}}class z extends k{constructor(t,i,s,e,o){super(t,i,s,e,o),this.type=5;}_$AI(t,i=this){var s;if((t=null!==(s=S(this,t,i,0))&&void 0!==s?s:A)===T)return;const e=this._$AH,o=t===A&&e!==A||t.capture!==e.capture||t.once!==e.once||t.passive!==e.passive,n=t!==A&&(e===A||o);o&&this.element.removeEventListener(this.name,this,e),n&&this.element.addEventListener(this.name,this,t),this._$AH=t;}handleEvent(t){var i,s;"function"==typeof this._$AH?this._$AH.call(null!==(s=null===(i=this.options)||void 0===i?void 0:i.host)&&void 0!==s?s:this.element,t):this._$AH.handleEvent(t);}}class Z{constructor(t,i,s){this.element=t,this.type=6,this._$AN=void 0,this._$AM=i,this.options=s;}get _$AU(){return this._$AM._$AU}_$AI(t){S(this,t);}}const B=i.litHtmlPolyfillSupport;null==B||B(N,R),(null!==(t=i.litHtmlVersions)&&void 0!==t?t:i.litHtmlVersions=[]).push("2.8.0");const D=(t,i,s)=>{var e,o;const n=null!==(e=null==s?void 0:s.renderBefore)&&void 0!==e?e:i;let l=n._$litPart$;if(void 0===l){const t=null!==(o=null==s?void 0:s.renderBefore)&&void 0!==o?o:null;n._$litPart$=l=new R(i.insertBefore(u(),t),t,void 0,null!=s?s:{});}return l._$AI(t),l};
|
|
472
|
+
|
|
473
|
+
/**
|
|
474
|
+
* @license
|
|
475
|
+
* Copyright 2017 Google LLC
|
|
476
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
477
|
+
*/var l,o;class s extends u$1{constructor(){super(...arguments),this.renderOptions={host:this},this._$Do=void 0;}createRenderRoot(){var t,e;const i=super.createRenderRoot();return null!==(t=(e=this.renderOptions).renderBefore)&&void 0!==t||(e.renderBefore=i.firstChild),i}update(t){const i=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(t),this._$Do=D(i,this.renderRoot,this.renderOptions);}connectedCallback(){var t;super.connectedCallback(),null===(t=this._$Do)||void 0===t||t.setConnected(!0);}disconnectedCallback(){var t;super.disconnectedCallback(),null===(t=this._$Do)||void 0===t||t.setConnected(!1);}render(){return T}}s.finalized=!0,s._$litElement$=!0,null===(l=globalThis.litElementHydrateSupport)||void 0===l||l.call(globalThis,{LitElement:s});const n=globalThis.litElementPolyfillSupport;null==n||n({LitElement:s});(null!==(o=globalThis.litElementVersions)&&void 0!==o?o:globalThis.litElementVersions=[]).push("3.3.3");
|
|
478
|
+
|
|
479
|
+
export { _inherits as _, _createClass as a, _classCallCheck as b, _callSuper as c, _taggedTemplateLiteral as d, _objectSpread2 as e, _superPropGet as f, _asyncToGenerator as g, _regeneratorRuntime as h, i$1 as i, s, x };
|