overview-components 1.0.75 → 1.0.77

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. package/dist/_virtual/FileSaver.min.js +4 -0
  2. package/dist/_virtual/_commonjsHelpers.js +4 -0
  3. package/dist/assets/icons/iconGlyphs.js +680 -0
  4. package/dist/components/lit-attachments-tab.js +11 -7
  5. package/dist/components/lit-badge.js +10 -7
  6. package/dist/components/lit-case-variables-tab.js +23 -19
  7. package/dist/components/lit-chart.js +24 -21
  8. package/dist/components/lit-data-grid-tanstack.js +42 -37
  9. package/dist/components/lit-filter-modal.js +6 -2
  10. package/dist/components/lit-multiselect-item.js +7 -3
  11. package/dist/components/lit-section-tab.js +15 -11
  12. package/dist/components/lit-tabs-overview.js +9 -5
  13. package/dist/components/react-wrappers/attachments-tab.js +1 -1
  14. package/dist/components/react-wrappers/badge.js +1 -1
  15. package/dist/components/react-wrappers/button.js +3 -3
  16. package/dist/components/react-wrappers/case-variables-tab.js +3 -3
  17. package/dist/components/react-wrappers/chart.js +3 -3
  18. package/dist/components/react-wrappers/data-grid-tanstack.js +1 -1
  19. package/dist/components/react-wrappers/filter-modal.js +4 -4
  20. package/dist/components/react-wrappers/progress-bar.js +5 -5
  21. package/dist/components/react-wrappers/section-tab.js +4 -4
  22. package/dist/components/react-wrappers/tabs-overview.js +3 -3
  23. package/dist/index.d.ts +18 -0
  24. package/dist/index.d.ts.map +1 -1
  25. package/dist/index.js +51 -32
  26. package/dist/node_modules/@floating-ui/core/dist/floating-ui.core.js +432 -0
  27. package/dist/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +390 -0
  28. package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +131 -0
  29. package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +128 -0
  30. package/dist/node_modules/@lit/localize/init/install.js +11 -0
  31. package/dist/node_modules/@lit/localize/init/runtime.js +42 -0
  32. package/dist/node_modules/@lit/localize/internal/default-msg.js +10 -0
  33. package/dist/node_modules/@lit/localize/internal/deferred.js +21 -0
  34. package/dist/node_modules/@lit/localize/internal/fnv1a64.js +17 -0
  35. package/dist/node_modules/@lit/localize/internal/id-generation.js +14 -0
  36. package/dist/node_modules/@lit/localize/internal/locale-status-event.js +9 -0
  37. package/dist/node_modules/@lit/localize/internal/runtime-msg.js +42 -0
  38. package/dist/node_modules/@lit/localize/internal/str-tag.js +15 -0
  39. package/dist/node_modules/@lit/react/create-component.js +35 -0
  40. package/dist/node_modules/@lit/reactive-element/css-tag.js +32 -24
  41. package/dist/node_modules/@lit/reactive-element/reactive-element.js +4 -3
  42. package/dist/node_modules/@tanstack/lit-table/build/lib/index.js +104 -0
  43. package/dist/node_modules/@tanstack/lit-virtual/dist/esm/index.js +40 -0
  44. package/dist/node_modules/@tanstack/table-core/build/lib/index.js +1956 -0
  45. package/dist/node_modules/@tanstack/virtual-core/dist/esm/index.js +490 -0
  46. package/dist/node_modules/@tanstack/virtual-core/dist/esm/utils.js +52 -0
  47. package/dist/node_modules/file-saver/dist/FileSaver.min.js +74 -0
  48. package/dist/node_modules/lit-element/lit-element.js +51 -0
  49. package/dist/node_modules/lit-html/directives/class-map.js +34 -0
  50. package/dist/node_modules/lit-html/lit-html.js +75 -74
  51. package/dist/node_modules/luxon/src/datetime.js +1793 -0
  52. package/dist/node_modules/luxon/src/duration.js +723 -0
  53. package/dist/node_modules/luxon/src/errors.js +40 -0
  54. package/dist/node_modules/luxon/src/impl/conversions.js +92 -0
  55. package/dist/node_modules/luxon/src/impl/diff.js +36 -0
  56. package/dist/node_modules/luxon/src/impl/digits.js +74 -0
  57. package/dist/node_modules/luxon/src/impl/english.js +138 -0
  58. package/dist/node_modules/luxon/src/impl/formats.js +150 -0
  59. package/dist/node_modules/luxon/src/impl/formatter.js +245 -0
  60. package/dist/node_modules/luxon/src/impl/invalid.js +11 -0
  61. package/dist/node_modules/luxon/src/impl/locale.js +282 -0
  62. package/dist/node_modules/luxon/src/impl/regexParser.js +202 -0
  63. package/dist/node_modules/luxon/src/impl/tokenParser.js +329 -0
  64. package/dist/node_modules/luxon/src/impl/util.js +206 -0
  65. package/dist/node_modules/luxon/src/impl/zoneUtil.js +19 -0
  66. package/dist/node_modules/luxon/src/info.js +180 -0
  67. package/dist/node_modules/luxon/src/interval.js +466 -0
  68. package/dist/node_modules/luxon/src/settings.js +150 -0
  69. package/dist/node_modules/luxon/src/zone.js +88 -0
  70. package/dist/node_modules/luxon/src/zones/IANAZone.js +178 -0
  71. package/dist/node_modules/luxon/src/zones/fixedOffsetZone.js +125 -0
  72. package/dist/node_modules/luxon/src/zones/invalidZone.js +41 -0
  73. package/dist/node_modules/luxon/src/zones/systemZone.js +47 -0
  74. package/dist/node_modules/sortablejs/modular/sortable.esm.js +1261 -0
  75. package/dist/shared/lit-button.js +11 -8
  76. package/dist/shared/lit-checkbox.js +155 -0
  77. package/dist/shared/lit-icon.js +282 -0
  78. package/dist/shared/lit-input.js +211 -0
  79. package/dist/shared/lit-menu.js +40 -0
  80. package/dist/shared/lit-modal.js +128 -0
  81. package/dist/shared/lit-pill.js +86 -0
  82. package/dist/shared/lit-progress-bar.js +10 -7
  83. package/dist/shared/lit-select.js +339 -0
  84. package/dist/shared/lit-tooltip.js +137 -0
  85. package/dist/shared/simple-tooltip.js +33 -31
  86. package/dist/shared/styles/button-shared-styles.js +6 -3
  87. package/dist/styles.js +174 -0
  88. package/dist/utils/custom-filters.js +8 -7
  89. package/dist/utils/date.js +6 -5
  90. package/dist/utils/getOperatorByType.js +4 -3
  91. package/dist/utils/localization.js +1 -1
  92. package/package.json +1 -1
@@ -0,0 +1,34 @@
1
+ import { noChange as o } from "../lit-html.js";
2
+ import { directive as h, Directive as c, PartType as d } from "../directive.js";
3
+ /**
4
+ * @license
5
+ * Copyright 2018 Google LLC
6
+ * SPDX-License-Identifier: BSD-3-Clause
7
+ */
8
+ const f = h(class extends c {
9
+ constructor(s) {
10
+ var e;
11
+ if (super(s), s.type !== d.ATTRIBUTE || s.name !== "class" || ((e = s.strings) == null ? void 0 : e.length) > 2) throw Error("`classMap()` can only be used in the `class` attribute and must be the only part in the attribute.");
12
+ }
13
+ render(s) {
14
+ return " " + Object.keys(s).filter((e) => s[e]).join(" ") + " ";
15
+ }
16
+ update(s, [e]) {
17
+ var n, i;
18
+ if (this.st === void 0) {
19
+ this.st = /* @__PURE__ */ new Set(), s.strings !== void 0 && (this.nt = new Set(s.strings.join(" ").split(/\s/).filter((t) => t !== "")));
20
+ for (const t in e) e[t] && !((n = this.nt) != null && n.has(t)) && this.st.add(t);
21
+ return this.render(e);
22
+ }
23
+ const r = s.element.classList;
24
+ for (const t of this.st) t in e || (r.remove(t), this.st.delete(t));
25
+ for (const t in e) {
26
+ const a = !!e[t];
27
+ a === this.st.has(t) || (i = this.nt) != null && i.has(t) || (a ? (r.add(t), this.st.add(t)) : (r.remove(t), this.st.delete(t)));
28
+ }
29
+ return o;
30
+ }
31
+ });
32
+ export {
33
+ f as classMap
34
+ };
@@ -3,70 +3,70 @@
3
3
  * Copyright 2017 Google LLC
4
4
  * SPDX-License-Identifier: BSD-3-Clause
5
5
  */
6
- const H = globalThis, M = H.trustedTypes, B = M ? M.createPolicy("lit-html", { createHTML: (h) => h }) : void 0, W = "$lit$", p = `lit$${Math.random().toFixed(9).slice(2)}$`, k = "?" + p, D = `<${k}>`, f = document, x = () => f.createComment(""), N = (h) => h === null || typeof h != "object" && typeof h != "function", E = Array.isArray, z = (h) => E(h) || typeof (h == null ? void 0 : h[Symbol.iterator]) == "function", w = `[
6
+ const x = globalThis, M = x.trustedTypes, B = M ? M.createPolicy("lit-html", { createHTML: (h) => h }) : void 0, W = "$lit$", p = `lit$${Math.random().toFixed(9).slice(2)}$`, k = "?" + p, D = `<${k}>`, f = document, H = () => f.createComment(""), N = (h) => h === null || typeof h != "object" && typeof h != "function", E = Array.isArray, z = (h) => E(h) || typeof (h == null ? void 0 : h[Symbol.iterator]) == "function", w = `[
7
7
  \f\r]`, y = /<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g, P = /-->/g, U = />/g, u = RegExp(`>|${w}(?:([^\\s"'>=/]+)(${w}*=${w}*(?:[^
8
- \f\r"'\`<>=]|("|')|))|$)`, "g"), L = /'/g, O = /"/g, V = /^(?:script|style|textarea|title)$/i, T = Symbol.for("lit-noChange"), a = Symbol.for("lit-nothing"), R = /* @__PURE__ */ new WeakMap(), g = f.createTreeWalker(f, 129);
8
+ \f\r"'\`<>=]|("|')|))|$)`, "g"), L = /'/g, O = /"/g, V = /^(?:script|style|textarea|title)$/i, Z = (h) => (t, ...e) => ({ _$litType$: h, strings: t, values: e }), X = Z(1), T = Symbol.for("lit-noChange"), a = Symbol.for("lit-nothing"), R = /* @__PURE__ */ new WeakMap(), g = f.createTreeWalker(f, 129);
9
9
  function j(h, t) {
10
10
  if (!E(h) || !h.hasOwnProperty("raw")) throw Error("invalid template strings array");
11
11
  return B !== void 0 ? B.createHTML(t) : t;
12
12
  }
13
- const Z = (h, t) => {
14
- const e = h.length - 1, s = [];
15
- let i, o = t === 2 ? "<svg>" : t === 3 ? "<math>" : "", n = y;
13
+ const F = (h, t) => {
14
+ const e = h.length - 1, i = [];
15
+ let s, o = t === 2 ? "<svg>" : t === 3 ? "<math>" : "", n = y;
16
16
  for (let A = 0; A < e; A++) {
17
17
  const r = h[A];
18
18
  let $, _, l = -1, c = 0;
19
- for (; c < r.length && (n.lastIndex = c, _ = n.exec(r), _ !== null); ) c = n.lastIndex, n === y ? _[1] === "!--" ? n = P : _[1] !== void 0 ? n = U : _[2] !== void 0 ? (V.test(_[2]) && (i = RegExp("</" + _[2], "g")), n = u) : _[3] !== void 0 && (n = u) : n === u ? _[0] === ">" ? (n = i ?? y, l = -1) : _[1] === void 0 ? l = -2 : (l = n.lastIndex - _[2].length, $ = _[1], n = _[3] === void 0 ? u : _[3] === '"' ? O : L) : n === O || n === L ? n = u : n === P || n === U ? n = y : (n = u, i = void 0);
19
+ for (; c < r.length && (n.lastIndex = c, _ = n.exec(r), _ !== null); ) c = n.lastIndex, n === y ? _[1] === "!--" ? n = P : _[1] !== void 0 ? n = U : _[2] !== void 0 ? (V.test(_[2]) && (s = RegExp("</" + _[2], "g")), n = u) : _[3] !== void 0 && (n = u) : n === u ? _[0] === ">" ? (n = s ?? y, l = -1) : _[1] === void 0 ? l = -2 : (l = n.lastIndex - _[2].length, $ = _[1], n = _[3] === void 0 ? u : _[3] === '"' ? O : L) : n === O || n === L ? n = u : n === P || n === U ? n = y : (n = u, s = void 0);
20
20
  const d = n === u && h[A + 1].startsWith("/>") ? " " : "";
21
- o += n === y ? r + D : l >= 0 ? (s.push($), r.slice(0, l) + W + r.slice(l) + p + d) : r + p + (l === -2 ? A : d);
21
+ o += n === y ? r + D : l >= 0 ? (i.push($), r.slice(0, l) + W + r.slice(l) + p + d) : r + p + (l === -2 ? A : d);
22
22
  }
23
- return [j(h, o + (h[e] || "<?>") + (t === 2 ? "</svg>" : t === 3 ? "</math>" : "")), s];
23
+ return [j(h, o + (h[e] || "<?>") + (t === 2 ? "</svg>" : t === 3 ? "</math>" : "")), i];
24
24
  };
25
25
  class b {
26
- constructor({ strings: t, _$litType$: e }, s) {
27
- let i;
26
+ constructor({ strings: t, _$litType$: e }, i) {
27
+ let s;
28
28
  this.parts = [];
29
29
  let o = 0, n = 0;
30
- const A = t.length - 1, r = this.parts, [$, _] = Z(t, e);
31
- if (this.el = b.createElement($, s), g.currentNode = this.el.content, e === 2 || e === 3) {
30
+ const A = t.length - 1, r = this.parts, [$, _] = F(t, e);
31
+ if (this.el = b.createElement($, i), g.currentNode = this.el.content, e === 2 || e === 3) {
32
32
  const l = this.el.content.firstChild;
33
33
  l.replaceWith(...l.childNodes);
34
34
  }
35
- for (; (i = g.nextNode()) !== null && r.length < A; ) {
36
- if (i.nodeType === 1) {
37
- if (i.hasAttributes()) for (const l of i.getAttributeNames()) if (l.endsWith(W)) {
38
- const c = _[n++], d = i.getAttribute(l).split(p), C = /([.?@])?(.*)/.exec(c);
39
- r.push({ type: 1, index: o, name: C[2], strings: d, ctor: C[1] === "." ? q : C[1] === "?" ? G : C[1] === "@" ? J : S }), i.removeAttribute(l);
40
- } else l.startsWith(p) && (r.push({ type: 6, index: o }), i.removeAttribute(l));
41
- if (V.test(i.tagName)) {
42
- const l = i.textContent.split(p), c = l.length - 1;
35
+ for (; (s = g.nextNode()) !== null && r.length < A; ) {
36
+ if (s.nodeType === 1) {
37
+ if (s.hasAttributes()) for (const l of s.getAttributeNames()) if (l.endsWith(W)) {
38
+ const c = _[n++], d = s.getAttribute(l).split(p), C = /([.?@])?(.*)/.exec(c);
39
+ r.push({ type: 1, index: o, name: C[2], strings: d, ctor: C[1] === "." ? G : C[1] === "?" ? J : C[1] === "@" ? K : S }), s.removeAttribute(l);
40
+ } else l.startsWith(p) && (r.push({ type: 6, index: o }), s.removeAttribute(l));
41
+ if (V.test(s.tagName)) {
42
+ const l = s.textContent.split(p), c = l.length - 1;
43
43
  if (c > 0) {
44
- i.textContent = M ? M.emptyScript : "";
45
- for (let d = 0; d < c; d++) i.append(l[d], x()), g.nextNode(), r.push({ type: 2, index: ++o });
46
- i.append(l[c], x());
44
+ s.textContent = M ? M.emptyScript : "";
45
+ for (let d = 0; d < c; d++) s.append(l[d], H()), g.nextNode(), r.push({ type: 2, index: ++o });
46
+ s.append(l[c], H());
47
47
  }
48
48
  }
49
- } else if (i.nodeType === 8) if (i.data === k) r.push({ type: 2, index: o });
49
+ } else if (s.nodeType === 8) if (s.data === k) r.push({ type: 2, index: o });
50
50
  else {
51
51
  let l = -1;
52
- for (; (l = i.data.indexOf(p, l + 1)) !== -1; ) r.push({ type: 7, index: o }), l += p.length - 1;
52
+ for (; (l = s.data.indexOf(p, l + 1)) !== -1; ) r.push({ type: 7, index: o }), l += p.length - 1;
53
53
  }
54
54
  o++;
55
55
  }
56
56
  }
57
57
  static createElement(t, e) {
58
- const s = f.createElement("template");
59
- return s.innerHTML = t, s;
58
+ const i = f.createElement("template");
59
+ return i.innerHTML = t, i;
60
60
  }
61
61
  }
62
- function v(h, t, e = h, s) {
62
+ function v(h, t, e = h, i) {
63
63
  var n, A;
64
64
  if (t === T) return t;
65
- let i = s !== void 0 ? (n = e._$Co) == null ? void 0 : n[s] : e._$Cl;
65
+ let s = i !== void 0 ? (n = e._$Co) == null ? void 0 : n[i] : e._$Cl;
66
66
  const o = N(t) ? void 0 : t._$litDirective$;
67
- return (i == null ? void 0 : i.constructor) !== o && ((A = i == null ? void 0 : i._$AO) == null || A.call(i, !1), o === void 0 ? i = void 0 : (i = new o(h), i._$AT(h, e, s)), s !== void 0 ? (e._$Co ?? (e._$Co = []))[s] = i : e._$Cl = i), i !== void 0 && (t = v(h, i._$AS(h, t.values), i, s)), t;
67
+ return (s == null ? void 0 : s.constructor) !== o && ((A = s == null ? void 0 : s._$AO) == null || A.call(s, !1), o === void 0 ? s = void 0 : (s = new o(h), s._$AT(h, e, i)), i !== void 0 ? (e._$Co ?? (e._$Co = []))[i] = s : e._$Cl = s), s !== void 0 && (t = v(h, s._$AS(h, t.values), s, i)), t;
68
68
  }
69
- class F {
69
+ class q {
70
70
  constructor(t, e) {
71
71
  this._$AV = [], this._$AN = void 0, this._$AD = t, this._$AM = e;
72
72
  }
@@ -77,21 +77,21 @@ class F {
77
77
  return this._$AM._$AU;
78
78
  }
79
79
  u(t) {
80
- const { el: { content: e }, parts: s } = this._$AD, i = ((t == null ? void 0 : t.creationScope) ?? f).importNode(e, !0);
81
- g.currentNode = i;
82
- let o = g.nextNode(), n = 0, A = 0, r = s[0];
80
+ const { el: { content: e }, parts: i } = this._$AD, s = ((t == null ? void 0 : t.creationScope) ?? f).importNode(e, !0);
81
+ g.currentNode = s;
82
+ let o = g.nextNode(), n = 0, A = 0, r = i[0];
83
83
  for (; r !== void 0; ) {
84
84
  if (n === r.index) {
85
85
  let $;
86
- r.type === 2 ? $ = new m(o, o.nextSibling, this, t) : r.type === 1 ? $ = new r.ctor(o, r.name, r.strings, this, t) : r.type === 6 && ($ = new K(o, this, t)), this._$AV.push($), r = s[++A];
86
+ r.type === 2 ? $ = new m(o, o.nextSibling, this, t) : r.type === 1 ? $ = new r.ctor(o, r.name, r.strings, this, t) : r.type === 6 && ($ = new Q(o, this, t)), this._$AV.push($), r = i[++A];
87
87
  }
88
88
  n !== (r == null ? void 0 : r.index) && (o = g.nextNode(), n++);
89
89
  }
90
- return g.currentNode = f, i;
90
+ return g.currentNode = f, s;
91
91
  }
92
92
  p(t) {
93
93
  let e = 0;
94
- for (const s of this._$AV) s !== void 0 && (s.strings !== void 0 ? (s._$AI(t, s, e), e += s.strings.length - 2) : s._$AI(t[e])), e++;
94
+ for (const i of this._$AV) i !== void 0 && (i.strings !== void 0 ? (i._$AI(t, i, e), e += i.strings.length - 2) : i._$AI(t[e])), e++;
95
95
  }
96
96
  }
97
97
  class m {
@@ -99,8 +99,8 @@ class m {
99
99
  var t;
100
100
  return ((t = this._$AM) == null ? void 0 : t._$AU) ?? this._$Cv;
101
101
  }
102
- constructor(t, e, s, i) {
103
- this.type = 2, this._$AH = a, this._$AN = void 0, this._$AA = t, this._$AB = e, this._$AM = s, this.options = i, this._$Cv = (i == null ? void 0 : i.isConnected) ?? !0;
102
+ constructor(t, e, i, s) {
103
+ this.type = 2, this._$AH = a, this._$AN = void 0, this._$AA = t, this._$AB = e, this._$AM = i, this.options = s, this._$Cv = (s == null ? void 0 : s.isConnected) ?? !0;
104
104
  }
105
105
  get parentNode() {
106
106
  let t = this._$AA.parentNode;
@@ -127,10 +127,10 @@ class m {
127
127
  }
128
128
  $(t) {
129
129
  var o;
130
- const { values: e, _$litType$: s } = t, i = typeof s == "number" ? this._$AC(t) : (s.el === void 0 && (s.el = b.createElement(j(s.h, s.h[0]), this.options)), s);
131
- if (((o = this._$AH) == null ? void 0 : o._$AD) === i) this._$AH.p(e);
130
+ const { values: e, _$litType$: i } = t, s = typeof i == "number" ? this._$AC(t) : (i.el === void 0 && (i.el = b.createElement(j(i.h, i.h[0]), this.options)), i);
131
+ if (((o = this._$AH) == null ? void 0 : o._$AD) === s) this._$AH.p(e);
132
132
  else {
133
- const n = new F(i, this), A = n.u(this.options);
133
+ const n = new q(s, this), A = n.u(this.options);
134
134
  n.p(e), this.T(A), this._$AH = n;
135
135
  }
136
136
  }
@@ -141,15 +141,15 @@ class m {
141
141
  k(t) {
142
142
  E(this._$AH) || (this._$AH = [], this._$AR());
143
143
  const e = this._$AH;
144
- let s, i = 0;
145
- for (const o of t) i === e.length ? e.push(s = new m(this.O(x()), this.O(x()), this, this.options)) : s = e[i], s._$AI(o), i++;
146
- i < e.length && (this._$AR(s && s._$AB.nextSibling, i), e.length = i);
144
+ let i, s = 0;
145
+ for (const o of t) s === e.length ? e.push(i = new m(this.O(H()), this.O(H()), this, this.options)) : i = e[s], i._$AI(o), s++;
146
+ s < e.length && (this._$AR(i && i._$AB.nextSibling, s), e.length = s);
147
147
  }
148
148
  _$AR(t = this._$AA.nextSibling, e) {
149
- var s;
150
- for ((s = this._$AP) == null ? void 0 : s.call(this, !1, !0, e); t && t !== this._$AB; ) {
151
- const i = t.nextSibling;
152
- t.remove(), t = i;
149
+ var i;
150
+ for ((i = this._$AP) == null ? void 0 : i.call(this, !1, !0, e); t && t !== this._$AB; ) {
151
+ const s = t.nextSibling;
152
+ t.remove(), t = s;
153
153
  }
154
154
  }
155
155
  setConnected(t) {
@@ -164,25 +164,25 @@ class S {
164
164
  get _$AU() {
165
165
  return this._$AM._$AU;
166
166
  }
167
- constructor(t, e, s, i, o) {
168
- this.type = 1, this._$AH = a, this._$AN = void 0, this.element = t, this.name = e, this._$AM = i, 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;
167
+ constructor(t, e, i, s, o) {
168
+ this.type = 1, this._$AH = a, this._$AN = void 0, this.element = t, this.name = e, this._$AM = s, this.options = o, i.length > 2 || i[0] !== "" || i[1] !== "" ? (this._$AH = Array(i.length - 1).fill(new String()), this.strings = i) : this._$AH = a;
169
169
  }
170
- _$AI(t, e = this, s, i) {
170
+ _$AI(t, e = this, i, s) {
171
171
  const o = this.strings;
172
172
  let n = !1;
173
173
  if (o === void 0) t = v(this, t, e, 0), n = !N(t) || t !== this._$AH && t !== T, n && (this._$AH = t);
174
174
  else {
175
175
  const A = t;
176
176
  let r, $;
177
- for (t = o[0], r = 0; r < o.length - 1; r++) $ = v(this, A[s + r], e, r), $ === T && ($ = this._$AH[r]), n || (n = !N($) || $ !== this._$AH[r]), $ === a ? t = a : t !== a && (t += ($ ?? "") + o[r + 1]), this._$AH[r] = $;
177
+ for (t = o[0], r = 0; r < o.length - 1; r++) $ = v(this, A[i + r], e, r), $ === T && ($ = this._$AH[r]), n || (n = !N($) || $ !== this._$AH[r]), $ === a ? t = a : t !== a && (t += ($ ?? "") + o[r + 1]), this._$AH[r] = $;
178
178
  }
179
- n && !i && this.j(t);
179
+ n && !s && this.j(t);
180
180
  }
181
181
  j(t) {
182
182
  t === a ? this.element.removeAttribute(this.name) : this.element.setAttribute(this.name, t ?? "");
183
183
  }
184
184
  }
185
- class q extends S {
185
+ class G extends S {
186
186
  constructor() {
187
187
  super(...arguments), this.type = 3;
188
188
  }
@@ -190,7 +190,7 @@ class q extends S {
190
190
  this.element[this.name] = t === a ? void 0 : t;
191
191
  }
192
192
  }
193
- class G extends S {
193
+ class J extends S {
194
194
  constructor() {
195
195
  super(...arguments), this.type = 4;
196
196
  }
@@ -198,23 +198,23 @@ class G extends S {
198
198
  this.element.toggleAttribute(this.name, !!t && t !== a);
199
199
  }
200
200
  }
201
- class J extends S {
202
- constructor(t, e, s, i, o) {
203
- super(t, e, s, i, o), this.type = 5;
201
+ class K extends S {
202
+ constructor(t, e, i, s, o) {
203
+ super(t, e, i, s, o), this.type = 5;
204
204
  }
205
205
  _$AI(t, e = this) {
206
206
  if ((t = v(this, t, e, 0) ?? a) === T) return;
207
- const s = this._$AH, i = t === a && s !== a || t.capture !== s.capture || t.once !== s.once || t.passive !== s.passive, o = t !== a && (s === a || i);
208
- i && this.element.removeEventListener(this.name, this, s), o && this.element.addEventListener(this.name, this, t), this._$AH = t;
207
+ const i = this._$AH, s = t === a && i !== a || t.capture !== i.capture || t.once !== i.once || t.passive !== i.passive, o = t !== a && (i === a || s);
208
+ s && this.element.removeEventListener(this.name, this, i), o && this.element.addEventListener(this.name, this, t), this._$AH = t;
209
209
  }
210
210
  handleEvent(t) {
211
211
  var e;
212
212
  typeof this._$AH == "function" ? this._$AH.call(((e = this.options) == null ? void 0 : e.host) ?? this.element, t) : this._$AH.handleEvent(t);
213
213
  }
214
214
  }
215
- class K {
216
- constructor(t, e, s) {
217
- this.element = t, this.type = 6, this._$AN = void 0, this._$AM = e, this.options = s;
215
+ class Q {
216
+ constructor(t, e, i) {
217
+ this.element = t, this.type = 6, this._$AN = void 0, this._$AM = e, this.options = i;
218
218
  }
219
219
  get _$AU() {
220
220
  return this._$AM._$AU;
@@ -223,20 +223,21 @@ class K {
223
223
  v(this, t);
224
224
  }
225
225
  }
226
- const Q = { I: m }, I = H.litHtmlPolyfillSupport;
227
- I == null || I(b, m), (H.litHtmlVersions ?? (H.litHtmlVersions = [])).push("3.3.0");
228
- const X = (h, t, e) => {
229
- const s = (e == null ? void 0 : e.renderBefore) ?? t;
230
- let i = s._$litPart$;
231
- if (i === void 0) {
226
+ const Y = { I: m }, I = x.litHtmlPolyfillSupport;
227
+ I == null || I(b, m), (x.litHtmlVersions ?? (x.litHtmlVersions = [])).push("3.3.0");
228
+ const tt = (h, t, e) => {
229
+ const i = (e == null ? void 0 : e.renderBefore) ?? t;
230
+ let s = i._$litPart$;
231
+ if (s === void 0) {
232
232
  const o = (e == null ? void 0 : e.renderBefore) ?? null;
233
- s._$litPart$ = i = new m(t.insertBefore(x(), o), o, void 0, e ?? {});
233
+ i._$litPart$ = s = new m(t.insertBefore(H(), o), o, void 0, e ?? {});
234
234
  }
235
- return i._$AI(h), i;
235
+ return s._$AI(h), s;
236
236
  };
237
237
  export {
238
- Q as _$LH,
238
+ Y as _$LH,
239
+ X as html,
239
240
  T as noChange,
240
241
  a as nothing,
241
- X as render
242
+ tt as render
242
243
  };