@startinblox/components-ds4go 2.3.0 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/.gitlab-ci.yml +8 -2
  2. package/AGENTS.md +516 -0
  3. package/cypress/component/no-component-test.cy.ts +9 -0
  4. package/cypress/e2e/helpers/components/setupCacheInvalidation.cy.ts +512 -0
  5. package/cypress/e2e/helpers/components/setupCacheOnResourceReady.cy.ts +483 -0
  6. package/cypress/e2e/helpers/components/setupComponentSubscriptions.cy.ts +239 -0
  7. package/cypress/e2e/helpers/components/setupOnSaveReset.cy.ts +380 -0
  8. package/cypress/e2e/helpers/datas/checkValueInIntervalRecursive.cy.ts +563 -0
  9. package/cypress/e2e/helpers/datas/dataBuilder.cy.ts +508 -0
  10. package/cypress/e2e/helpers/datas/filterGenerator.cy.ts +285 -0
  11. package/cypress/e2e/helpers/datas/filterObjectByDateAfter.cy.ts +389 -0
  12. package/cypress/e2e/helpers/datas/filterObjectByDateInterval.cy.ts +613 -0
  13. package/cypress/e2e/helpers/datas/filterObjectById.cy.ts +276 -0
  14. package/cypress/e2e/helpers/datas/filterObjectByInterval.cy.ts +237 -0
  15. package/cypress/e2e/helpers/datas/filterObjectByNamedValue.cy.ts +299 -0
  16. package/cypress/e2e/helpers/datas/filterObjectByType.cy.ts +307 -0
  17. package/cypress/e2e/helpers/datas/filterObjectByValue.cy.ts +375 -0
  18. package/cypress/e2e/helpers/datas/sort.cy.ts +293 -0
  19. package/cypress/e2e/helpers/ui/formatDate.cy.ts +233 -0
  20. package/cypress/e2e/helpers/utils/requestNavigation.cy.ts +257 -0
  21. package/cypress/e2e/helpers/utils/uniq.cy.ts +160 -0
  22. package/cypress/support/e2e.ts +1 -0
  23. package/cypress.config.ts +2 -0
  24. package/dist/index.js +1102 -1002
  25. package/package.json +10 -10
  26. package/src/components/solid-boilerplate.ts +76 -0
  27. package/src/helpers/components/componentObjectHandler.ts +5 -7
  28. package/src/helpers/components/componentObjectsHandler.ts +8 -3
  29. package/src/helpers/components/orbitComponent.ts +87 -68
  30. package/src/helpers/components/setupCacheInvalidation.ts +50 -23
  31. package/src/helpers/components/setupCacheOnResourceReady.ts +42 -23
  32. package/src/helpers/components/setupComponentSubscriptions.ts +10 -9
  33. package/src/helpers/components/setupOnSaveReset.ts +27 -5
  34. package/src/helpers/datas/checkValueInIntervalRecursive.ts +66 -0
  35. package/src/helpers/datas/dataBuilder.ts +4 -4
  36. package/src/helpers/datas/filterGenerator.ts +13 -10
  37. package/src/helpers/datas/filterObjectByDateAfter.ts +3 -3
  38. package/src/helpers/datas/filterObjectByDateInterval.ts +44 -0
  39. package/src/helpers/datas/filterObjectById.ts +7 -6
  40. package/src/helpers/datas/filterObjectByInterval.ts +6 -110
  41. package/src/helpers/datas/filterObjectByNamedValue.ts +35 -33
  42. package/src/helpers/datas/filterObjectByType.ts +3 -3
  43. package/src/helpers/datas/filterObjectByValue.ts +17 -16
  44. package/src/helpers/datas/sort.ts +50 -23
  45. package/src/helpers/index.ts +2 -0
  46. package/src/helpers/ui/formatDate.ts +14 -1
  47. package/src/helpers/utils/requestNavigation.ts +5 -2
  48. package/src/helpers/utils/uniq.ts +1 -1
  49. package/cypress/component/solid-boilerplate.cy.ts +0 -9
package/dist/index.js CHANGED
@@ -1,16 +1,16 @@
1
- import { StoreType as he, StoreService as pe } from "https://cdn.jsdelivr.net/npm/@startinblox/core@beta/+esm";
2
- const rt = globalThis, Ct = rt.ShadowRoot && (rt.ShadyCSS === void 0 || rt.ShadyCSS.nativeShadow) && "adoptedStyleSheets" in Document.prototype && "replace" in CSSStyleSheet.prototype, St = /* @__PURE__ */ Symbol(), Ot = /* @__PURE__ */ new WeakMap();
3
- let Qt = class {
4
- constructor(t, s, i) {
5
- if (this._$cssResult$ = !0, i !== St) throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");
6
- this.cssText = t, this.t = s;
1
+ import { StoreType as me, StoreService as ge } from "https://cdn.jsdelivr.net/npm/@startinblox/core@beta/+esm";
2
+ const nt = globalThis, xt = nt.ShadowRoot && (nt.ShadyCSS === void 0 || nt.ShadyCSS.nativeShadow) && "adoptedStyleSheets" in Document.prototype && "replace" in CSSStyleSheet.prototype, Pt = /* @__PURE__ */ Symbol(), Ot = /* @__PURE__ */ new WeakMap();
3
+ let te = class {
4
+ constructor(t, r, i) {
5
+ if (this._$cssResult$ = !0, i !== Pt) throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");
6
+ this.cssText = t, this.t = r;
7
7
  }
8
8
  get styleSheet() {
9
9
  let t = this.o;
10
- const s = this.t;
11
- if (Ct && t === void 0) {
12
- const i = s !== void 0 && s.length === 1;
13
- i && (t = Ot.get(s)), t === void 0 && ((this.o = t = new CSSStyleSheet()).replaceSync(this.cssText), i && Ot.set(s, t));
10
+ const r = this.t;
11
+ if (xt && t === void 0) {
12
+ const i = r !== void 0 && r.length === 1;
13
+ i && (t = Ot.get(r)), t === void 0 && ((this.o = t = new CSSStyleSheet()).replaceSync(this.cssText), i && Ot.set(r, t));
14
14
  }
15
15
  return t;
16
16
  }
@@ -18,28 +18,28 @@ let Qt = class {
18
18
  return this.cssText;
19
19
  }
20
20
  };
21
- const xt = (e) => new Qt(typeof e == "string" ? e : e + "", void 0, St), lt = (e, ...t) => {
22
- const s = e.length === 1 ? e[0] : t.reduce((i, r, o) => i + ((n) => {
21
+ const Rt = (e) => new te(typeof e == "string" ? e : e + "", void 0, Pt), tt = (e, ...t) => {
22
+ const r = e.length === 1 ? e[0] : t.reduce((i, s, o) => i + ((n) => {
23
23
  if (n._$cssResult$ === !0) return n.cssText;
24
24
  if (typeof n == "number") return n;
25
25
  throw Error("Value passed to 'css' function must be a 'css' function result: " + n + ". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.");
26
- })(r) + e[o + 1], e[0]);
27
- return new Qt(s, e, St);
28
- }, fe = (e, t) => {
29
- if (Ct) e.adoptedStyleSheets = t.map((s) => s instanceof CSSStyleSheet ? s : s.styleSheet);
30
- else for (const s of t) {
31
- const i = document.createElement("style"), r = rt.litNonce;
32
- r !== void 0 && i.setAttribute("nonce", r), i.textContent = s.cssText, e.appendChild(i);
33
- }
34
- }, Dt = Ct ? (e) => e : (e) => e instanceof CSSStyleSheet ? ((t) => {
35
- let s = "";
36
- for (const i of t.cssRules) s += i.cssText;
37
- return xt(s);
26
+ })(s) + e[o + 1], e[0]);
27
+ return new te(r, e, Pt);
28
+ }, ye = (e, t) => {
29
+ if (xt) e.adoptedStyleSheets = t.map((r) => r instanceof CSSStyleSheet ? r : r.styleSheet);
30
+ else for (const r of t) {
31
+ const i = document.createElement("style"), s = nt.litNonce;
32
+ s !== void 0 && i.setAttribute("nonce", s), i.textContent = r.cssText, e.appendChild(i);
33
+ }
34
+ }, Lt = xt ? (e) => e : (e) => e instanceof CSSStyleSheet ? ((t) => {
35
+ let r = "";
36
+ for (const i of t.cssRules) r += i.cssText;
37
+ return Rt(r);
38
38
  })(e) : e;
39
- const { is: me, defineProperty: ge, getOwnPropertyDescriptor: ye, getOwnPropertyNames: ve, getOwnPropertySymbols: be, getPrototypeOf: $e } = Object, dt = globalThis, Lt = dt.trustedTypes, _e = Lt ? Lt.emptyScript : "", we = dt.reactiveElementPolyfillSupport, K = (e, t) => e, it = { toAttribute(e, t) {
39
+ const { is: ve, defineProperty: be, getOwnPropertyDescriptor: $e, getOwnPropertyNames: _e, getOwnPropertySymbols: we, getPrototypeOf: Ae } = Object, ht = globalThis, Tt = ht.trustedTypes, Ce = Tt ? Tt.emptyScript : "", Se = ht.reactiveElementPolyfillSupport, G = (e, t) => e, at = { toAttribute(e, t) {
40
40
  switch (t) {
41
41
  case Boolean:
42
- e = e ? _e : null;
42
+ e = e ? Ce : null;
43
43
  break;
44
44
  case Object:
45
45
  case Array:
@@ -47,85 +47,85 @@ const { is: me, defineProperty: ge, getOwnPropertyDescriptor: ye, getOwnProperty
47
47
  }
48
48
  return e;
49
49
  }, fromAttribute(e, t) {
50
- let s = e;
50
+ let r = e;
51
51
  switch (t) {
52
52
  case Boolean:
53
- s = e !== null;
53
+ r = e !== null;
54
54
  break;
55
55
  case Number:
56
- s = e === null ? null : Number(e);
56
+ r = e === null ? null : Number(e);
57
57
  break;
58
58
  case Object:
59
59
  case Array:
60
60
  try {
61
- s = JSON.parse(e);
61
+ r = JSON.parse(e);
62
62
  } catch {
63
- s = null;
63
+ r = null;
64
64
  }
65
65
  }
66
- return s;
67
- } }, ut = (e, t) => !me(e, t), kt = { attribute: !0, type: String, converter: it, reflect: !1, useDefault: !1, hasChanged: ut };
68
- Symbol.metadata ??= /* @__PURE__ */ Symbol("metadata"), dt.litPropertyMetadata ??= /* @__PURE__ */ new WeakMap();
69
- let M = class extends HTMLElement {
66
+ return r;
67
+ } }, pt = (e, t) => !ve(e, t), It = { attribute: !0, type: String, converter: at, reflect: !1, useDefault: !1, hasChanged: pt };
68
+ Symbol.metadata ??= /* @__PURE__ */ Symbol("metadata"), ht.litPropertyMetadata ??= /* @__PURE__ */ new WeakMap();
69
+ let B = class extends HTMLElement {
70
70
  static addInitializer(t) {
71
71
  this._$Ei(), (this.l ??= []).push(t);
72
72
  }
73
73
  static get observedAttributes() {
74
74
  return this.finalize(), this._$Eh && [...this._$Eh.keys()];
75
75
  }
76
- static createProperty(t, s = kt) {
77
- if (s.state && (s.attribute = !1), this._$Ei(), this.prototype.hasOwnProperty(t) && ((s = Object.create(s)).wrapped = !0), this.elementProperties.set(t, s), !s.noAccessor) {
78
- const i = /* @__PURE__ */ Symbol(), r = this.getPropertyDescriptor(t, i, s);
79
- r !== void 0 && ge(this.prototype, t, r);
76
+ static createProperty(t, r = It) {
77
+ if (r.state && (r.attribute = !1), this._$Ei(), this.prototype.hasOwnProperty(t) && ((r = Object.create(r)).wrapped = !0), this.elementProperties.set(t, r), !r.noAccessor) {
78
+ const i = /* @__PURE__ */ Symbol(), s = this.getPropertyDescriptor(t, i, r);
79
+ s !== void 0 && be(this.prototype, t, s);
80
80
  }
81
81
  }
82
- static getPropertyDescriptor(t, s, i) {
83
- const { get: r, set: o } = ye(this.prototype, t) ?? { get() {
84
- return this[s];
82
+ static getPropertyDescriptor(t, r, i) {
83
+ const { get: s, set: o } = $e(this.prototype, t) ?? { get() {
84
+ return this[r];
85
85
  }, set(n) {
86
- this[s] = n;
86
+ this[r] = n;
87
87
  } };
88
- return { get: r, set(n) {
89
- const a = r?.call(this);
88
+ return { get: s, set(n) {
89
+ const a = s?.call(this);
90
90
  o?.call(this, n), this.requestUpdate(t, a, i);
91
91
  }, configurable: !0, enumerable: !0 };
92
92
  }
93
93
  static getPropertyOptions(t) {
94
- return this.elementProperties.get(t) ?? kt;
94
+ return this.elementProperties.get(t) ?? It;
95
95
  }
96
96
  static _$Ei() {
97
- if (this.hasOwnProperty(K("elementProperties"))) return;
98
- const t = $e(this);
97
+ if (this.hasOwnProperty(G("elementProperties"))) return;
98
+ const t = Ae(this);
99
99
  t.finalize(), t.l !== void 0 && (this.l = [...t.l]), this.elementProperties = new Map(t.elementProperties);
100
100
  }
101
101
  static finalize() {
102
- if (this.hasOwnProperty(K("finalized"))) return;
103
- if (this.finalized = !0, this._$Ei(), this.hasOwnProperty(K("properties"))) {
104
- const s = this.properties, i = [...ve(s), ...be(s)];
105
- for (const r of i) this.createProperty(r, s[r]);
102
+ if (this.hasOwnProperty(G("finalized"))) return;
103
+ if (this.finalized = !0, this._$Ei(), this.hasOwnProperty(G("properties"))) {
104
+ const r = this.properties, i = [..._e(r), ...we(r)];
105
+ for (const s of i) this.createProperty(s, r[s]);
106
106
  }
107
107
  const t = this[Symbol.metadata];
108
108
  if (t !== null) {
109
- const s = litPropertyMetadata.get(t);
110
- if (s !== void 0) for (const [i, r] of s) this.elementProperties.set(i, r);
109
+ const r = litPropertyMetadata.get(t);
110
+ if (r !== void 0) for (const [i, s] of r) this.elementProperties.set(i, s);
111
111
  }
112
112
  this._$Eh = /* @__PURE__ */ new Map();
113
- for (const [s, i] of this.elementProperties) {
114
- const r = this._$Eu(s, i);
115
- r !== void 0 && this._$Eh.set(r, s);
113
+ for (const [r, i] of this.elementProperties) {
114
+ const s = this._$Eu(r, i);
115
+ s !== void 0 && this._$Eh.set(s, r);
116
116
  }
117
117
  this.elementStyles = this.finalizeStyles(this.styles);
118
118
  }
119
119
  static finalizeStyles(t) {
120
- const s = [];
120
+ const r = [];
121
121
  if (Array.isArray(t)) {
122
122
  const i = new Set(t.flat(1 / 0).reverse());
123
- for (const r of i) s.unshift(Dt(r));
124
- } else t !== void 0 && s.push(Dt(t));
125
- return s;
123
+ for (const s of i) r.unshift(Lt(s));
124
+ } else t !== void 0 && r.push(Lt(t));
125
+ return r;
126
126
  }
127
- static _$Eu(t, s) {
128
- const i = s.attribute;
127
+ static _$Eu(t, r) {
128
+ const i = r.attribute;
129
129
  return i === !1 ? void 0 : typeof i == "string" ? i : typeof t == "string" ? t.toLowerCase() : void 0;
130
130
  }
131
131
  constructor() {
@@ -141,13 +141,13 @@ let M = class extends HTMLElement {
141
141
  this._$EO?.delete(t);
142
142
  }
143
143
  _$E_() {
144
- const t = /* @__PURE__ */ new Map(), s = this.constructor.elementProperties;
145
- for (const i of s.keys()) this.hasOwnProperty(i) && (t.set(i, this[i]), delete this[i]);
144
+ const t = /* @__PURE__ */ new Map(), r = this.constructor.elementProperties;
145
+ for (const i of r.keys()) this.hasOwnProperty(i) && (t.set(i, this[i]), delete this[i]);
146
146
  t.size > 0 && (this._$Ep = t);
147
147
  }
148
148
  createRenderRoot() {
149
149
  const t = this.shadowRoot ?? this.attachShadow(this.constructor.shadowRootOptions);
150
- return fe(t, this.constructor.elementStyles), t;
150
+ return ye(t, this.constructor.elementStyles), t;
151
151
  }
152
152
  connectedCallback() {
153
153
  this.renderRoot ??= this.createRenderRoot(), this.enableUpdating(!0), this._$EO?.forEach((t) => t.hostConnected?.());
@@ -157,42 +157,42 @@ let M = class extends HTMLElement {
157
157
  disconnectedCallback() {
158
158
  this._$EO?.forEach((t) => t.hostDisconnected?.());
159
159
  }
160
- attributeChangedCallback(t, s, i) {
160
+ attributeChangedCallback(t, r, i) {
161
161
  this._$AK(t, i);
162
162
  }
163
- _$ET(t, s) {
164
- const i = this.constructor.elementProperties.get(t), r = this.constructor._$Eu(t, i);
165
- if (r !== void 0 && i.reflect === !0) {
166
- const o = (i.converter?.toAttribute !== void 0 ? i.converter : it).toAttribute(s, i.type);
167
- this._$Em = t, o == null ? this.removeAttribute(r) : this.setAttribute(r, o), this._$Em = null;
163
+ _$ET(t, r) {
164
+ const i = this.constructor.elementProperties.get(t), s = this.constructor._$Eu(t, i);
165
+ if (s !== void 0 && i.reflect === !0) {
166
+ const o = (i.converter?.toAttribute !== void 0 ? i.converter : at).toAttribute(r, i.type);
167
+ this._$Em = t, o == null ? this.removeAttribute(s) : this.setAttribute(s, o), this._$Em = null;
168
168
  }
169
169
  }
170
- _$AK(t, s) {
171
- const i = this.constructor, r = i._$Eh.get(t);
172
- if (r !== void 0 && this._$Em !== r) {
173
- const o = i.getPropertyOptions(r), n = typeof o.converter == "function" ? { fromAttribute: o.converter } : o.converter?.fromAttribute !== void 0 ? o.converter : it;
174
- this._$Em = r;
175
- const a = n.fromAttribute(s, o.type);
176
- this[r] = a ?? this._$Ej?.get(r) ?? a, this._$Em = null;
170
+ _$AK(t, r) {
171
+ const i = this.constructor, s = i._$Eh.get(t);
172
+ if (s !== void 0 && this._$Em !== s) {
173
+ const o = i.getPropertyOptions(s), n = typeof o.converter == "function" ? { fromAttribute: o.converter } : o.converter?.fromAttribute !== void 0 ? o.converter : at;
174
+ this._$Em = s;
175
+ const a = n.fromAttribute(r, o.type);
176
+ this[s] = a ?? this._$Ej?.get(s) ?? a, this._$Em = null;
177
177
  }
178
178
  }
179
- requestUpdate(t, s, i, r = !1, o) {
179
+ requestUpdate(t, r, i, s = !1, o) {
180
180
  if (t !== void 0) {
181
181
  const n = this.constructor;
182
- if (r === !1 && (o = this[t]), i ??= n.getPropertyOptions(t), !((i.hasChanged ?? ut)(o, s) || i.useDefault && i.reflect && o === this._$Ej?.get(t) && !this.hasAttribute(n._$Eu(t, i)))) return;
183
- this.C(t, s, i);
182
+ if (s === !1 && (o = this[t]), i ??= n.getPropertyOptions(t), !((i.hasChanged ?? pt)(o, r) || i.useDefault && i.reflect && o === this._$Ej?.get(t) && !this.hasAttribute(n._$Eu(t, i)))) return;
183
+ this.C(t, r, i);
184
184
  }
185
185
  this.isUpdatePending === !1 && (this._$ES = this._$EP());
186
186
  }
187
- C(t, s, { useDefault: i, reflect: r, wrapped: o }, n) {
188
- i && !(this._$Ej ??= /* @__PURE__ */ new Map()).has(t) && (this._$Ej.set(t, n ?? s ?? this[t]), o !== !0 || n !== void 0) || (this._$AL.has(t) || (this.hasUpdated || i || (s = void 0), this._$AL.set(t, s)), r === !0 && this._$Em !== t && (this._$Eq ??= /* @__PURE__ */ new Set()).add(t));
187
+ C(t, r, { useDefault: i, reflect: s, wrapped: o }, n) {
188
+ i && !(this._$Ej ??= /* @__PURE__ */ new Map()).has(t) && (this._$Ej.set(t, n ?? r ?? this[t]), o !== !0 || n !== void 0) || (this._$AL.has(t) || (this.hasUpdated || i || (r = void 0), this._$AL.set(t, r)), s === !0 && this._$Em !== t && (this._$Eq ??= /* @__PURE__ */ new Set()).add(t));
189
189
  }
190
190
  async _$EP() {
191
191
  this.isUpdatePending = !0;
192
192
  try {
193
193
  await this._$ES;
194
- } catch (s) {
195
- Promise.reject(s);
194
+ } catch (r) {
195
+ Promise.reject(r);
196
196
  }
197
197
  const t = this.scheduleUpdate();
198
198
  return t != null && await t, !this.isUpdatePending;
@@ -204,28 +204,28 @@ let M = class extends HTMLElement {
204
204
  if (!this.isUpdatePending) return;
205
205
  if (!this.hasUpdated) {
206
206
  if (this.renderRoot ??= this.createRenderRoot(), this._$Ep) {
207
- for (const [r, o] of this._$Ep) this[r] = o;
207
+ for (const [s, o] of this._$Ep) this[s] = o;
208
208
  this._$Ep = void 0;
209
209
  }
210
210
  const i = this.constructor.elementProperties;
211
- if (i.size > 0) for (const [r, o] of i) {
212
- const { wrapped: n } = o, a = this[r];
213
- n !== !0 || this._$AL.has(r) || a === void 0 || this.C(r, void 0, o, a);
211
+ if (i.size > 0) for (const [s, o] of i) {
212
+ const { wrapped: n } = o, a = this[s];
213
+ n !== !0 || this._$AL.has(s) || a === void 0 || this.C(s, void 0, o, a);
214
214
  }
215
215
  }
216
216
  let t = !1;
217
- const s = this._$AL;
217
+ const r = this._$AL;
218
218
  try {
219
- t = this.shouldUpdate(s), t ? (this.willUpdate(s), this._$EO?.forEach((i) => i.hostUpdate?.()), this.update(s)) : this._$EM();
219
+ t = this.shouldUpdate(r), t ? (this.willUpdate(r), this._$EO?.forEach((i) => i.hostUpdate?.()), this.update(r)) : this._$EM();
220
220
  } catch (i) {
221
221
  throw t = !1, this._$EM(), i;
222
222
  }
223
- t && this._$AE(s);
223
+ t && this._$AE(r);
224
224
  }
225
225
  willUpdate(t) {
226
226
  }
227
227
  _$AE(t) {
228
- this._$EO?.forEach((s) => s.hostUpdated?.()), this.hasUpdated || (this.hasUpdated = !0, this.firstUpdated(t)), this.updated(t);
228
+ this._$EO?.forEach((r) => r.hostUpdated?.()), this.hasUpdated || (this.hasUpdated = !0, this.firstUpdated(t)), this.updated(t);
229
229
  }
230
230
  _$EM() {
231
231
  this._$AL = /* @__PURE__ */ new Map(), this.isUpdatePending = !1;
@@ -240,79 +240,79 @@ let M = class extends HTMLElement {
240
240
  return !0;
241
241
  }
242
242
  update(t) {
243
- this._$Eq &&= this._$Eq.forEach((s) => this._$ET(s, this[s])), this._$EM();
243
+ this._$Eq &&= this._$Eq.forEach((r) => this._$ET(r, this[r])), this._$EM();
244
244
  }
245
245
  updated(t) {
246
246
  }
247
247
  firstUpdated(t) {
248
248
  }
249
249
  };
250
- M.elementStyles = [], M.shadowRootOptions = { mode: "open" }, M[K("elementProperties")] = /* @__PURE__ */ new Map(), M[K("finalized")] = /* @__PURE__ */ new Map(), we?.({ ReactiveElement: M }), (dt.reactiveElementVersions ??= []).push("2.1.2");
251
- const Pt = globalThis, Tt = (e) => e, ot = Pt.trustedTypes, It = ot ? ot.createPolicy("lit-html", { createHTML: (e) => e }) : void 0, Yt = "$lit$", x = `lit$${Math.random().toFixed(9).slice(2)}$`, te = "?" + x, Ae = `<${te}>`, I = document, G = () => I.createComment(""), J = (e) => e === null || typeof e != "object" && typeof e != "function", jt = Array.isArray, Ce = (e) => jt(e) || typeof e?.[Symbol.iterator] == "function", mt = `[
252
- \f\r]`, W = /<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g, Ft = /-->/g, Mt = />/g, O = RegExp(`>|${mt}(?:([^\\s"'>=/]+)(${mt}*=${mt}*(?:[^
253
- \f\r"'\`<>=]|("|')|))|$)`, "g"), Nt = /'/g, Bt = /"/g, ee = /^(?:script|style|textarea|title)$/i, Se = (e) => (t, ...s) => ({ _$litType$: e, strings: t, values: s }), u = Se(1), H = /* @__PURE__ */ Symbol.for("lit-noChange"), l = /* @__PURE__ */ Symbol.for("lit-nothing"), qt = /* @__PURE__ */ new WeakMap(), k = I.createTreeWalker(I, 129);
254
- function se(e, t) {
250
+ B.elementStyles = [], B.shadowRootOptions = { mode: "open" }, B[G("elementProperties")] = /* @__PURE__ */ new Map(), B[G("finalized")] = /* @__PURE__ */ new Map(), Se?.({ ReactiveElement: B }), (ht.reactiveElementVersions ??= []).push("2.1.2");
251
+ const Et = globalThis, Ft = (e) => e, ct = Et.trustedTypes, Nt = ct ? ct.createPolicy("lit-html", { createHTML: (e) => e }) : void 0, ee = "$lit$", R = `lit$${Math.random().toFixed(9).slice(2)}$`, re = "?" + R, xe = `<${re}>`, F = document, J = () => F.createComment(""), Z = (e) => e === null || typeof e != "object" && typeof e != "function", jt = Array.isArray, Pe = (e) => jt(e) || typeof e?.[Symbol.iterator] == "function", gt = `[
252
+ \f\r]`, K = /<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g, Mt = /-->/g, Bt = />/g, k = RegExp(`>|${gt}(?:([^\\s"'>=/]+)(${gt}*=${gt}*(?:[^
253
+ \f\r"'\`<>=]|("|')|))|$)`, "g"), qt = /'/g, Ht = /"/g, se = /^(?:script|style|textarea|title)$/i, Re = (e) => (t, ...r) => ({ _$litType$: e, strings: t, values: r }), f = Re(1), V = /* @__PURE__ */ Symbol.for("lit-noChange"), l = /* @__PURE__ */ Symbol.for("lit-nothing"), zt = /* @__PURE__ */ new WeakMap(), T = F.createTreeWalker(F, 129);
254
+ function ie(e, t) {
255
255
  if (!jt(e) || !e.hasOwnProperty("raw")) throw Error("invalid template strings array");
256
- return It !== void 0 ? It.createHTML(t) : t;
256
+ return Nt !== void 0 ? Nt.createHTML(t) : t;
257
257
  }
258
- const xe = (e, t) => {
259
- const s = e.length - 1, i = [];
260
- let r, o = t === 2 ? "<svg>" : t === 3 ? "<math>" : "", n = W;
261
- for (let a = 0; a < s; a++) {
258
+ const Ee = (e, t) => {
259
+ const r = e.length - 1, i = [];
260
+ let s, o = t === 2 ? "<svg>" : t === 3 ? "<math>" : "", n = K;
261
+ for (let a = 0; a < r; a++) {
262
262
  const c = e[a];
263
- let h, m, p = -1, _ = 0;
264
- for (; _ < c.length && (n.lastIndex = _, m = n.exec(c), m !== null); ) _ = n.lastIndex, n === W ? m[1] === "!--" ? n = Ft : m[1] !== void 0 ? n = Mt : m[2] !== void 0 ? (ee.test(m[2]) && (r = RegExp("</" + m[2], "g")), n = O) : m[3] !== void 0 && (n = O) : n === O ? m[0] === ">" ? (n = r ?? W, p = -1) : m[1] === void 0 ? p = -2 : (p = n.lastIndex - m[2].length, h = m[1], n = m[3] === void 0 ? O : m[3] === '"' ? Bt : Nt) : n === Bt || n === Nt ? n = O : n === Ft || n === Mt ? n = W : (n = O, r = void 0);
265
- const w = n === O && e[a + 1].startsWith("/>") ? " " : "";
266
- o += n === W ? c + Ae : p >= 0 ? (i.push(h), c.slice(0, p) + Yt + c.slice(p) + x + w) : c + x + (p === -2 ? a : w);
263
+ let d, p, u = -1, g = 0;
264
+ for (; g < c.length && (n.lastIndex = g, p = n.exec(c), p !== null); ) g = n.lastIndex, n === K ? p[1] === "!--" ? n = Mt : p[1] !== void 0 ? n = Bt : p[2] !== void 0 ? (se.test(p[2]) && (s = RegExp("</" + p[2], "g")), n = k) : p[3] !== void 0 && (n = k) : n === k ? p[0] === ">" ? (n = s ?? K, u = -1) : p[1] === void 0 ? u = -2 : (u = n.lastIndex - p[2].length, d = p[1], n = p[3] === void 0 ? k : p[3] === '"' ? Ht : qt) : n === Ht || n === qt ? n = k : n === Mt || n === Bt ? n = K : (n = k, s = void 0);
265
+ const w = n === k && e[a + 1].startsWith("/>") ? " " : "";
266
+ o += n === K ? c + xe : u >= 0 ? (i.push(d), c.slice(0, u) + ee + c.slice(u) + R + w) : c + R + (u === -2 ? a : w);
267
267
  }
268
- return [se(e, o + (e[s] || "<?>") + (t === 2 ? "</svg>" : t === 3 ? "</math>" : "")), i];
268
+ return [ie(e, o + (e[r] || "<?>") + (t === 2 ? "</svg>" : t === 3 ? "</math>" : "")), i];
269
269
  };
270
- class Z {
271
- constructor({ strings: t, _$litType$: s }, i) {
272
- let r;
270
+ class X {
271
+ constructor({ strings: t, _$litType$: r }, i) {
272
+ let s;
273
273
  this.parts = [];
274
274
  let o = 0, n = 0;
275
- const a = t.length - 1, c = this.parts, [h, m] = xe(t, s);
276
- if (this.el = Z.createElement(h, i), k.currentNode = this.el.content, s === 2 || s === 3) {
277
- const p = this.el.content.firstChild;
278
- p.replaceWith(...p.childNodes);
275
+ const a = t.length - 1, c = this.parts, [d, p] = Ee(t, r);
276
+ if (this.el = X.createElement(d, i), T.currentNode = this.el.content, r === 2 || r === 3) {
277
+ const u = this.el.content.firstChild;
278
+ u.replaceWith(...u.childNodes);
279
279
  }
280
- for (; (r = k.nextNode()) !== null && c.length < a; ) {
281
- if (r.nodeType === 1) {
282
- if (r.hasAttributes()) for (const p of r.getAttributeNames()) if (p.endsWith(Yt)) {
283
- const _ = m[n++], w = r.getAttribute(p).split(x), et = /([.?@])?(.*)/.exec(_);
284
- c.push({ type: 1, index: o, name: et[2], strings: w, ctor: et[1] === "." ? je : et[1] === "?" ? Ee : et[1] === "@" ? Re : ht }), r.removeAttribute(p);
285
- } else p.startsWith(x) && (c.push({ type: 6, index: o }), r.removeAttribute(p));
286
- if (ee.test(r.tagName)) {
287
- const p = r.textContent.split(x), _ = p.length - 1;
288
- if (_ > 0) {
289
- r.textContent = ot ? ot.emptyScript : "";
290
- for (let w = 0; w < _; w++) r.append(p[w], G()), k.nextNode(), c.push({ type: 2, index: ++o });
291
- r.append(p[_], G());
280
+ for (; (s = T.nextNode()) !== null && c.length < a; ) {
281
+ if (s.nodeType === 1) {
282
+ if (s.hasAttributes()) for (const u of s.getAttributeNames()) if (u.endsWith(ee)) {
283
+ const g = p[n++], w = s.getAttribute(u).split(R), it = /([.?@])?(.*)/.exec(g);
284
+ c.push({ type: 1, index: o, name: it[2], strings: w, ctor: it[1] === "." ? Ue : it[1] === "?" ? ke : it[1] === "@" ? De : ft }), s.removeAttribute(u);
285
+ } else u.startsWith(R) && (c.push({ type: 6, index: o }), s.removeAttribute(u));
286
+ if (se.test(s.tagName)) {
287
+ const u = s.textContent.split(R), g = u.length - 1;
288
+ if (g > 0) {
289
+ s.textContent = ct ? ct.emptyScript : "";
290
+ for (let w = 0; w < g; w++) s.append(u[w], J()), T.nextNode(), c.push({ type: 2, index: ++o });
291
+ s.append(u[g], J());
292
292
  }
293
293
  }
294
- } else if (r.nodeType === 8) if (r.data === te) c.push({ type: 2, index: o });
294
+ } else if (s.nodeType === 8) if (s.data === re) c.push({ type: 2, index: o });
295
295
  else {
296
- let p = -1;
297
- for (; (p = r.data.indexOf(x, p + 1)) !== -1; ) c.push({ type: 7, index: o }), p += x.length - 1;
296
+ let u = -1;
297
+ for (; (u = s.data.indexOf(R, u + 1)) !== -1; ) c.push({ type: 7, index: o }), u += R.length - 1;
298
298
  }
299
299
  o++;
300
300
  }
301
301
  }
302
- static createElement(t, s) {
303
- const i = I.createElement("template");
302
+ static createElement(t, r) {
303
+ const i = F.createElement("template");
304
304
  return i.innerHTML = t, i;
305
305
  }
306
306
  }
307
- function z(e, t, s = e, i) {
308
- if (t === H) return t;
309
- let r = i !== void 0 ? s._$Co?.[i] : s._$Cl;
310
- const o = J(t) ? void 0 : t._$litDirective$;
311
- return r?.constructor !== o && (r?._$AO?.(!1), o === void 0 ? r = void 0 : (r = new o(e), r._$AT(e, s, i)), i !== void 0 ? (s._$Co ??= [])[i] = r : s._$Cl = r), r !== void 0 && (t = z(e, r._$AS(e, t.values), r, i)), t;
307
+ function W(e, t, r = e, i) {
308
+ if (t === V) return t;
309
+ let s = i !== void 0 ? r._$Co?.[i] : r._$Cl;
310
+ const o = Z(t) ? void 0 : t._$litDirective$;
311
+ return s?.constructor !== o && (s?._$AO?.(!1), o === void 0 ? s = void 0 : (s = new o(e), s._$AT(e, r, i)), i !== void 0 ? (r._$Co ??= [])[i] = s : r._$Cl = s), s !== void 0 && (t = W(e, s._$AS(e, t.values), s, i)), t;
312
312
  }
313
- class Pe {
314
- constructor(t, s) {
315
- this._$AV = [], this._$AN = void 0, this._$AD = t, this._$AM = s;
313
+ class je {
314
+ constructor(t, r) {
315
+ this._$AV = [], this._$AN = void 0, this._$AD = t, this._$AM = r;
316
316
  }
317
317
  get parentNode() {
318
318
  return this._$AM.parentNode;
@@ -321,34 +321,34 @@ class Pe {
321
321
  return this._$AM._$AU;
322
322
  }
323
323
  u(t) {
324
- const { el: { content: s }, parts: i } = this._$AD, r = (t?.creationScope ?? I).importNode(s, !0);
325
- k.currentNode = r;
326
- let o = k.nextNode(), n = 0, a = 0, c = i[0];
324
+ const { el: { content: r }, parts: i } = this._$AD, s = (t?.creationScope ?? F).importNode(r, !0);
325
+ T.currentNode = s;
326
+ let o = T.nextNode(), n = 0, a = 0, c = i[0];
327
327
  for (; c !== void 0; ) {
328
328
  if (n === c.index) {
329
- let h;
330
- c.type === 2 ? h = new Y(o, o.nextSibling, this, t) : c.type === 1 ? h = new c.ctor(o, c.name, c.strings, this, t) : c.type === 6 && (h = new Ue(o, this, t)), this._$AV.push(h), c = i[++a];
329
+ let d;
330
+ c.type === 2 ? d = new et(o, o.nextSibling, this, t) : c.type === 1 ? d = new c.ctor(o, c.name, c.strings, this, t) : c.type === 6 && (d = new Oe(o, this, t)), this._$AV.push(d), c = i[++a];
331
331
  }
332
- n !== c?.index && (o = k.nextNode(), n++);
332
+ n !== c?.index && (o = T.nextNode(), n++);
333
333
  }
334
- return k.currentNode = I, r;
334
+ return T.currentNode = F, s;
335
335
  }
336
336
  p(t) {
337
- let s = 0;
338
- for (const i of this._$AV) i !== void 0 && (i.strings !== void 0 ? (i._$AI(t, i, s), s += i.strings.length - 2) : i._$AI(t[s])), s++;
337
+ let r = 0;
338
+ for (const i of this._$AV) i !== void 0 && (i.strings !== void 0 ? (i._$AI(t, i, r), r += i.strings.length - 2) : i._$AI(t[r])), r++;
339
339
  }
340
340
  }
341
- class Y {
341
+ class et {
342
342
  get _$AU() {
343
343
  return this._$AM?._$AU ?? this._$Cv;
344
344
  }
345
- constructor(t, s, i, r) {
346
- this.type = 2, this._$AH = l, this._$AN = void 0, this._$AA = t, this._$AB = s, this._$AM = i, this.options = r, this._$Cv = r?.isConnected ?? !0;
345
+ constructor(t, r, i, s) {
346
+ this.type = 2, this._$AH = l, this._$AN = void 0, this._$AA = t, this._$AB = r, this._$AM = i, this.options = s, this._$Cv = s?.isConnected ?? !0;
347
347
  }
348
348
  get parentNode() {
349
349
  let t = this._$AA.parentNode;
350
- const s = this._$AM;
351
- return s !== void 0 && t?.nodeType === 11 && (t = s.parentNode), t;
350
+ const r = this._$AM;
351
+ return r !== void 0 && t?.nodeType === 11 && (t = r.parentNode), t;
352
352
  }
353
353
  get startNode() {
354
354
  return this._$AA;
@@ -356,8 +356,8 @@ class Y {
356
356
  get endNode() {
357
357
  return this._$AB;
358
358
  }
359
- _$AI(t, s = this) {
360
- t = z(this, t, s), J(t) ? t === l || t == null || t === "" ? (this._$AH !== l && this._$AR(), this._$AH = l) : t !== this._$AH && t !== H && this._(t) : t._$litType$ !== void 0 ? this.$(t) : t.nodeType !== void 0 ? this.T(t) : Ce(t) ? this.k(t) : this._(t);
359
+ _$AI(t, r = this) {
360
+ t = W(this, t, r), Z(t) ? t === l || t == null || t === "" ? (this._$AH !== l && this._$AR(), this._$AH = l) : t !== this._$AH && t !== V && this._(t) : t._$litType$ !== void 0 ? this.$(t) : t.nodeType !== void 0 ? this.T(t) : Pe(t) ? this.k(t) : this._(t);
361
361
  }
362
362
  O(t) {
363
363
  return this._$AA.parentNode.insertBefore(t, this._$AB);
@@ -366,63 +366,63 @@ class Y {
366
366
  this._$AH !== t && (this._$AR(), this._$AH = this.O(t));
367
367
  }
368
368
  _(t) {
369
- this._$AH !== l && J(this._$AH) ? this._$AA.nextSibling.data = t : this.T(I.createTextNode(t)), this._$AH = t;
369
+ this._$AH !== l && Z(this._$AH) ? this._$AA.nextSibling.data = t : this.T(F.createTextNode(t)), this._$AH = t;
370
370
  }
371
371
  $(t) {
372
- const { values: s, _$litType$: i } = t, r = typeof i == "number" ? this._$AC(t) : (i.el === void 0 && (i.el = Z.createElement(se(i.h, i.h[0]), this.options)), i);
373
- if (this._$AH?._$AD === r) this._$AH.p(s);
372
+ const { values: r, _$litType$: i } = t, s = typeof i == "number" ? this._$AC(t) : (i.el === void 0 && (i.el = X.createElement(ie(i.h, i.h[0]), this.options)), i);
373
+ if (this._$AH?._$AD === s) this._$AH.p(r);
374
374
  else {
375
- const o = new Pe(r, this), n = o.u(this.options);
376
- o.p(s), this.T(n), this._$AH = o;
375
+ const o = new je(s, this), n = o.u(this.options);
376
+ o.p(r), this.T(n), this._$AH = o;
377
377
  }
378
378
  }
379
379
  _$AC(t) {
380
- let s = qt.get(t.strings);
381
- return s === void 0 && qt.set(t.strings, s = new Z(t)), s;
380
+ let r = zt.get(t.strings);
381
+ return r === void 0 && zt.set(t.strings, r = new X(t)), r;
382
382
  }
383
383
  k(t) {
384
384
  jt(this._$AH) || (this._$AH = [], this._$AR());
385
- const s = this._$AH;
386
- let i, r = 0;
387
- for (const o of t) r === s.length ? s.push(i = new Y(this.O(G()), this.O(G()), this, this.options)) : i = s[r], i._$AI(o), r++;
388
- r < s.length && (this._$AR(i && i._$AB.nextSibling, r), s.length = r);
389
- }
390
- _$AR(t = this._$AA.nextSibling, s) {
391
- for (this._$AP?.(!1, !0, s); t !== this._$AB; ) {
392
- const i = Tt(t).nextSibling;
393
- Tt(t).remove(), t = i;
385
+ const r = this._$AH;
386
+ let i, s = 0;
387
+ for (const o of t) s === r.length ? r.push(i = new et(this.O(J()), this.O(J()), this, this.options)) : i = r[s], i._$AI(o), s++;
388
+ s < r.length && (this._$AR(i && i._$AB.nextSibling, s), r.length = s);
389
+ }
390
+ _$AR(t = this._$AA.nextSibling, r) {
391
+ for (this._$AP?.(!1, !0, r); t !== this._$AB; ) {
392
+ const i = Ft(t).nextSibling;
393
+ Ft(t).remove(), t = i;
394
394
  }
395
395
  }
396
396
  setConnected(t) {
397
397
  this._$AM === void 0 && (this._$Cv = t, this._$AP?.(t));
398
398
  }
399
399
  }
400
- class ht {
400
+ class ft {
401
401
  get tagName() {
402
402
  return this.element.tagName;
403
403
  }
404
404
  get _$AU() {
405
405
  return this._$AM._$AU;
406
406
  }
407
- constructor(t, s, i, r, o) {
408
- this.type = 1, this._$AH = l, this._$AN = void 0, this.element = t, this.name = s, this._$AM = r, this.options = o, i.length > 2 || i[0] !== "" || i[1] !== "" ? (this._$AH = Array(i.length - 1).fill(new String()), this.strings = i) : this._$AH = l;
407
+ constructor(t, r, i, s, o) {
408
+ this.type = 1, this._$AH = l, this._$AN = void 0, this.element = t, this.name = r, 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 = l;
409
409
  }
410
- _$AI(t, s = this, i, r) {
410
+ _$AI(t, r = this, i, s) {
411
411
  const o = this.strings;
412
412
  let n = !1;
413
- if (o === void 0) t = z(this, t, s, 0), n = !J(t) || t !== this._$AH && t !== H, n && (this._$AH = t);
413
+ if (o === void 0) t = W(this, t, r, 0), n = !Z(t) || t !== this._$AH && t !== V, n && (this._$AH = t);
414
414
  else {
415
415
  const a = t;
416
- let c, h;
417
- for (t = o[0], c = 0; c < o.length - 1; c++) h = z(this, a[i + c], s, c), h === H && (h = this._$AH[c]), n ||= !J(h) || h !== this._$AH[c], h === l ? t = l : t !== l && (t += (h ?? "") + o[c + 1]), this._$AH[c] = h;
416
+ let c, d;
417
+ for (t = o[0], c = 0; c < o.length - 1; c++) d = W(this, a[i + c], r, c), d === V && (d = this._$AH[c]), n ||= !Z(d) || d !== this._$AH[c], d === l ? t = l : t !== l && (t += (d ?? "") + o[c + 1]), this._$AH[c] = d;
418
418
  }
419
- n && !r && this.j(t);
419
+ n && !s && this.j(t);
420
420
  }
421
421
  j(t) {
422
422
  t === l ? this.element.removeAttribute(this.name) : this.element.setAttribute(this.name, t ?? "");
423
423
  }
424
424
  }
425
- class je extends ht {
425
+ class Ue extends ft {
426
426
  constructor() {
427
427
  super(...arguments), this.type = 3;
428
428
  }
@@ -430,7 +430,7 @@ class je extends ht {
430
430
  this.element[this.name] = t === l ? void 0 : t;
431
431
  }
432
432
  }
433
- class Ee extends ht {
433
+ class ke extends ft {
434
434
  constructor() {
435
435
  super(...arguments), this.type = 4;
436
436
  }
@@ -438,43 +438,43 @@ class Ee extends ht {
438
438
  this.element.toggleAttribute(this.name, !!t && t !== l);
439
439
  }
440
440
  }
441
- class Re extends ht {
442
- constructor(t, s, i, r, o) {
443
- super(t, s, i, r, o), this.type = 5;
441
+ class De extends ft {
442
+ constructor(t, r, i, s, o) {
443
+ super(t, r, i, s, o), this.type = 5;
444
444
  }
445
- _$AI(t, s = this) {
446
- if ((t = z(this, t, s, 0) ?? l) === H) return;
447
- const i = this._$AH, r = t === l && i !== l || t.capture !== i.capture || t.once !== i.once || t.passive !== i.passive, o = t !== l && (i === l || r);
448
- r && this.element.removeEventListener(this.name, this, i), o && this.element.addEventListener(this.name, this, t), this._$AH = t;
445
+ _$AI(t, r = this) {
446
+ if ((t = W(this, t, r, 0) ?? l) === V) return;
447
+ const i = this._$AH, s = t === l && i !== l || t.capture !== i.capture || t.once !== i.once || t.passive !== i.passive, o = t !== l && (i === l || s);
448
+ s && this.element.removeEventListener(this.name, this, i), o && this.element.addEventListener(this.name, this, t), this._$AH = t;
449
449
  }
450
450
  handleEvent(t) {
451
451
  typeof this._$AH == "function" ? this._$AH.call(this.options?.host ?? this.element, t) : this._$AH.handleEvent(t);
452
452
  }
453
453
  }
454
- class Ue {
455
- constructor(t, s, i) {
456
- this.element = t, this.type = 6, this._$AN = void 0, this._$AM = s, this.options = i;
454
+ class Oe {
455
+ constructor(t, r, i) {
456
+ this.element = t, this.type = 6, this._$AN = void 0, this._$AM = r, this.options = i;
457
457
  }
458
458
  get _$AU() {
459
459
  return this._$AM._$AU;
460
460
  }
461
461
  _$AI(t) {
462
- z(this, t);
462
+ W(this, t);
463
463
  }
464
464
  }
465
- const Oe = Pt.litHtmlPolyfillSupport;
466
- Oe?.(Z, Y), (Pt.litHtmlVersions ??= []).push("3.3.2");
467
- const De = (e, t, s) => {
468
- const i = s?.renderBefore ?? t;
469
- let r = i._$litPart$;
470
- if (r === void 0) {
471
- const o = s?.renderBefore ?? null;
472
- i._$litPart$ = r = new Y(t.insertBefore(G(), o), o, void 0, s ?? {});
473
- }
474
- return r._$AI(e), r;
465
+ const Le = Et.litHtmlPolyfillSupport;
466
+ Le?.(X, et), (Et.litHtmlVersions ??= []).push("3.3.2");
467
+ const Te = (e, t, r) => {
468
+ const i = r?.renderBefore ?? t;
469
+ let s = i._$litPart$;
470
+ if (s === void 0) {
471
+ const o = r?.renderBefore ?? null;
472
+ i._$litPart$ = s = new et(t.insertBefore(J(), o), o, void 0, r ?? {});
473
+ }
474
+ return s._$AI(e), s;
475
475
  };
476
- const Et = globalThis;
477
- let q = class extends M {
476
+ const Ut = globalThis;
477
+ let z = class extends B {
478
478
  constructor() {
479
479
  super(...arguments), this.renderOptions = { host: this }, this._$Do = void 0;
480
480
  }
@@ -483,8 +483,8 @@ let q = class extends M {
483
483
  return this.renderOptions.renderBefore ??= t.firstChild, t;
484
484
  }
485
485
  update(t) {
486
- const s = this.render();
487
- this.hasUpdated || (this.renderOptions.isConnected = this.isConnected), super.update(t), this._$Do = De(s, this.renderRoot, this.renderOptions);
486
+ const r = this.render();
487
+ this.hasUpdated || (this.renderOptions.isConnected = this.isConnected), super.update(t), this._$Do = Te(r, this.renderRoot, this.renderOptions);
488
488
  }
489
489
  connectedCallback() {
490
490
  super.connectedCallback(), this._$Do?.setConnected(!0);
@@ -493,33 +493,33 @@ let q = class extends M {
493
493
  super.disconnectedCallback(), this._$Do?.setConnected(!1);
494
494
  }
495
495
  render() {
496
- return H;
496
+ return V;
497
497
  }
498
498
  };
499
- q._$litElement$ = !0, q.finalized = !0, Et.litElementHydrateSupport?.({ LitElement: q });
500
- const Le = Et.litElementPolyfillSupport;
501
- Le?.({ LitElement: q });
502
- (Et.litElementVersions ??= []).push("4.2.2");
503
- class ke extends q {
499
+ z._$litElement$ = !0, z.finalized = !0, Ut.litElementHydrateSupport?.({ LitElement: z });
500
+ const Ie = Ut.litElementPolyfillSupport;
501
+ Ie?.({ LitElement: z });
502
+ (Ut.litElementVersions ??= []).push("4.2.2");
503
+ class Fe extends z {
504
504
  constructor() {
505
505
  super(...arguments), this.object = {
506
506
  "@id": ""
507
- }, this.isType = (t, s = this.object) => {
508
- const i = s["@type"];
509
- return Array.isArray(i) ? i.includes(t) : typeof i == "string" ? i === t : !1;
507
+ }, this.isType = (t, r) => {
508
+ const s = (r ?? this.object)["@type"];
509
+ return Array.isArray(s) ? s.includes(t) : typeof s == "string" ? s === t : !1;
510
510
  };
511
511
  }
512
512
  }
513
- const V = (e) => (t, s) => {
514
- s !== void 0 ? s.addInitializer(() => {
513
+ const M = (e) => (t, r) => {
514
+ r !== void 0 ? r.addInitializer(() => {
515
515
  customElements.define(e, t);
516
516
  }) : customElements.define(e, t);
517
517
  };
518
- const Te = { attribute: !0, type: String, converter: it, reflect: !1, hasChanged: ut }, Ie = (e = Te, t, s) => {
519
- const { kind: i, metadata: r } = s;
520
- let o = globalThis.litPropertyMetadata.get(r);
521
- if (o === void 0 && globalThis.litPropertyMetadata.set(r, o = /* @__PURE__ */ new Map()), i === "setter" && ((e = Object.create(e)).wrapped = !0), o.set(s.name, e), i === "accessor") {
522
- const { name: n } = s;
518
+ const Ne = { attribute: !0, type: String, converter: at, reflect: !1, hasChanged: pt }, Me = (e = Ne, t, r) => {
519
+ const { kind: i, metadata: s } = r;
520
+ let o = globalThis.litPropertyMetadata.get(s);
521
+ if (o === void 0 && globalThis.litPropertyMetadata.set(s, o = /* @__PURE__ */ new Map()), i === "setter" && ((e = Object.create(e)).wrapped = !0), o.set(r.name, e), i === "accessor") {
522
+ const { name: n } = r;
523
523
  return { set(a) {
524
524
  const c = t.get.call(this);
525
525
  t.set.call(this, a), this.requestUpdate(n, c, e, !0, a);
@@ -528,7 +528,7 @@ const Te = { attribute: !0, type: String, converter: it, reflect: !1, hasChanged
528
528
  } };
529
529
  }
530
530
  if (i === "setter") {
531
- const { name: n } = s;
531
+ const { name: n } = r;
532
532
  return function(a) {
533
533
  const c = this[n];
534
534
  t.call(this, a), this.requestUpdate(n, c, e, !0, a);
@@ -536,64 +536,79 @@ const Te = { attribute: !0, type: String, converter: it, reflect: !1, hasChanged
536
536
  }
537
537
  throw Error("Unsupported decorator location: " + i);
538
538
  };
539
- function y(e) {
540
- return (t, s) => typeof s == "object" ? Ie(e, t, s) : ((i, r, o) => {
541
- const n = r.hasOwnProperty(o);
542
- return r.constructor.createProperty(o, i), n ? Object.getOwnPropertyDescriptor(r, o) : void 0;
543
- })(e, t, s);
539
+ function v(e) {
540
+ return (t, r) => typeof r == "object" ? Me(e, t, r) : ((i, s, o) => {
541
+ const n = s.hasOwnProperty(o);
542
+ return s.constructor.createProperty(o, i), n ? Object.getOwnPropertyDescriptor(s, o) : void 0;
543
+ })(e, t, r);
544
544
  }
545
- function f(e) {
546
- return y({ ...e, state: !0, attribute: !1 });
545
+ function m(e) {
546
+ return v({ ...e, state: !0, attribute: !1 });
547
547
  }
548
- var Fe = Object.defineProperty, Me = (e, t, s, i) => {
549
- for (var r = void 0, o = e.length - 1, n; o >= 0; o--)
550
- (n = e[o]) && (r = n(t, s, r) || r);
551
- return r && Fe(t, s, r), r;
548
+ var Be = Object.defineProperty, qe = (e, t, r, i) => {
549
+ for (var s = void 0, o = e.length - 1, n; o >= 0; o--)
550
+ (n = e[o]) && (s = n(t, r, s) || s);
551
+ return s && Be(t, r, s), s;
552
552
  };
553
- class Rt extends q {
553
+ class kt extends z {
554
554
  constructor() {
555
- super(...arguments), this.objects = [], this.hasType = (t, s = this.objects) => new Set(s.flatMap((r) => r["@type"])).has(t);
555
+ super(...arguments), this.objects = [], this.hasType = (t, r) => (r ?? this.objects ?? []).some((s) => {
556
+ const o = s["@type"];
557
+ return Array.isArray(o) ? o.includes(t) : typeof o == "string" ? o === t : !1;
558
+ });
556
559
  }
557
560
  }
558
- Me([
559
- y({ attribute: !1 })
560
- ], Rt.prototype, "objects");
561
- var Ne = Object.defineProperty, E = (e, t, s, i) => {
562
- for (var r = void 0, o = e.length - 1, n; o >= 0; o--)
563
- (n = e[o]) && (r = n(t, s, r) || r);
564
- return r && Ne(t, s, r), r;
561
+ qe([
562
+ v({ attribute: !1 })
563
+ ], kt.prototype, "objects");
564
+ var He = Object.defineProperty, x = (e, t, r, i) => {
565
+ for (var s = void 0, o = e.length - 1, n; o >= 0; o--)
566
+ (n = e[o]) && (s = n(t, r, s) || s);
567
+ return s && He(t, r, s), s;
565
568
  };
566
- class b extends Rt {
569
+ class $ extends kt {
567
570
  constructor({
568
571
  defaultRoute: t = !1,
569
- setupSubscriptions: s = !0,
572
+ setupSubscriptions: r = !0,
570
573
  ignoreRouter: i = !1
571
574
  } = {}) {
572
- super(), this.cherryPickedProperties = [], this.currentRoute = "";
573
- const r = () => {
574
- document.readyState === "complete" && this._attach(t, s, i).then(
575
+ super(), this.ready = !1, this.cherryPickedProperties = [], this.currentRoute = "";
576
+ const s = () => {
577
+ document.readyState === "complete" && this._attach(t, r, i).then(
575
578
  (o) => {
576
579
  o && this.requestUpdate();
577
580
  }
578
581
  );
579
582
  };
580
- document.readyState === "complete" ? r() : document.addEventListener("readystatechange", r);
583
+ document.readyState === "complete" ? s() : document.addEventListener("readystatechange", s);
581
584
  }
582
- async _attach(t, s, i) {
583
- return !this.orbit && window.orbit && (this.orbit = window.orbit, s) ? (re({
584
- component: this,
585
- defaultRoute: t,
586
- ignoreRouter: i
587
- }), this.route && (this.component = this.orbit.getComponentFromRoute(this.route), this.component && this.orbit.components.map((r) => (r.uniq === this.component.uniq && (r.instance = this), r))), await this._afterAttach(), Promise.resolve(!0)) : Promise.resolve(!1);
585
+ async _attach(t, r, i) {
586
+ if (!this.orbit && window.orbit && (this.orbit = window.orbit, r)) {
587
+ if (ne({
588
+ component: this,
589
+ defaultRoute: t,
590
+ ignoreRouter: i
591
+ }), this.route && (this.component = this.orbit.getComponentFromRoute(this.route), this.component))
592
+ for (const s of this.orbit.components)
593
+ s.uniq === this.component.uniq && (s.instance = this);
594
+ return await this._afterAttach(), this.ready = !0, this.dispatchEvent(
595
+ new CustomEvent("component-ready", {
596
+ detail: {
597
+ component: this.component
598
+ }
599
+ })
600
+ ), Promise.resolve(!0);
601
+ }
602
+ return Promise.resolve(!1);
588
603
  }
589
604
  async _afterAttach() {
590
605
  return Promise.resolve();
591
606
  }
592
607
  _navigate(t) {
593
608
  window.sibRouter.previousRoute = this.currentRoute, window.sibRouter.previousResource = window.sibRouter.currentResource;
594
- const s = t.target?.closest("[navigation-target]");
595
- let i = s.getAttribute("navigation-target");
596
- const r = s.getAttribute("navigation-subrouter"), o = s.getAttribute("navigation-resource"), n = s.getAttribute("navigation-rdf-type");
609
+ const r = t.target?.closest("[navigation-target]");
610
+ let i = r.getAttribute("navigation-target");
611
+ const s = r.getAttribute("navigation-subrouter"), o = r.getAttribute("navigation-resource"), n = r.getAttribute("navigation-rdf-type");
597
612
  if (n) {
598
613
  const a = window.orbit?.components?.filter(
599
614
  (c) => c?.routeAttributes?.["rdf-type"] === n
@@ -601,76 +616,63 @@ class b extends Rt {
601
616
  a && (i = a[0]?.uniq);
602
617
  }
603
618
  i && L(
604
- (window.orbit ? window.orbit.getRoute(i, !0) : i) + (r ? `-${r}` : ""),
619
+ (window.orbit ? window.orbit.getRoute(i, !0) : i) + (s ? `-${s}` : ""),
605
620
  o
606
621
  ), t.preventDefault();
607
622
  }
608
623
  _normalizeLdpContains(t) {
609
- return !Array.isArray(t) && t !== null ? [t] : t;
624
+ return t === null ? [] : Array.isArray(t) ? t : [t];
610
625
  }
611
- async _expandContainer(t, s = !0, i = this.cherryPickedProperties) {
612
- const r = [];
613
- for (const o of t) {
614
- const n = await this._getProxyValue(
615
- await o,
616
- s,
617
- i
618
- );
619
- n && r.push(n);
620
- }
621
- return r;
626
+ async _expandContainer(t, r = !0, i = this.cherryPickedProperties) {
627
+ const s = [];
628
+ return await Promise.all(
629
+ t.map(async (o) => {
630
+ const n = await this._getProxyValue(
631
+ await o,
632
+ r,
633
+ i
634
+ );
635
+ n && s.push(n);
636
+ })
637
+ ), s;
622
638
  }
623
- async _getProperties(t, s = !0, i = this.cherryPickedProperties) {
624
- const r = await t.properties, o = {
639
+ async _getProperties(t, r = !0, i = this.cherryPickedProperties) {
640
+ const s = await t.properties, o = {
625
641
  "@id": t["@id"],
626
642
  "@type": t["@type"],
627
643
  "@context": t.serverContext,
628
644
  _originalResource: t
629
- };
630
- for (const n of i)
631
- r?.includes(n.key) && (o[n.value] = await t.get(n.key), n.expand && (o[n.value] = await this._getProxyValue(
632
- o[n.value],
633
- s,
634
- i
635
- )), n.cast && (o[n.value] = await n.cast(o[n.value])));
645
+ }, n = i.map(async (c) => {
646
+ if (!s?.includes(c.key)) return;
647
+ let d = await t.get(c.key);
648
+ return c.expand && (d = await this._getProxyValue(d, r, i)), c.cast && (d = await c.cast(d)), { prop: c, value: d };
649
+ }), a = (await Promise.all(n)).filter(
650
+ (c) => c !== void 0
651
+ );
652
+ for (const { prop: c, value: d } of a)
653
+ d !== void 0 && (o[c.value] = d);
636
654
  return await this._responseAdaptator(o);
637
655
  }
638
656
  async _hasCherryPickedProperties(t) {
639
- const s = await t.properties;
657
+ const r = await t.properties;
640
658
  for (const i of this.cherryPickedProperties)
641
- if (s?.includes(i.key))
659
+ if (r?.includes(i.key))
642
660
  return !0;
643
661
  return !1;
644
662
  }
645
- async _getProxyValue(t, s = !0, i = this.cherryPickedProperties) {
663
+ async _getProxyValue(t, r = !0, i = this.cherryPickedProperties) {
646
664
  try {
647
- if (t) {
648
- let r = t;
649
- if (typeof t == "string" && (r = await window.sibStore.getData(t, Wt)), typeof t != "string" && t.isFullResource && (t.isFullResource?.() || (r = await window.sibStore.getData(
650
- t["@id"],
651
- Wt
652
- ))), typeof t != "string" && !t.isFullResource && (r.properties = Object.keys(r), r.get = (o) => r[o]), !r) return { _originalResource: r };
653
- if (typeof r == "object" && r !== null) {
654
- if (r.isContainer?.() && r["ldp:contains"]) {
655
- if (await this._hasCherryPickedProperties(r))
656
- return await this._getProperties(
657
- r,
658
- s,
659
- i
660
- );
661
- const o = this._normalizeLdpContains(
662
- await r["ldp:contains"]
663
- );
664
- return await this._expandContainer(
665
- o,
666
- s,
667
- i
668
- );
669
- }
670
- return await this._getProperties(r, s, i);
671
- }
665
+ if (!t) return;
666
+ let s = t;
667
+ if (typeof t == "string" ? s = await window.sibStore.getData(t, Gt) : t.isFullResource && !t.isFullResource?.() && (s = await window.sibStore.getData(t["@id"], Gt)), !s) return { _originalResource: s };
668
+ if (typeof s != "object" || s === null) return;
669
+ if (s.isContainer?.() && s["ldp:contains"]) {
670
+ if (await this._hasCherryPickedProperties(s))
671
+ return await this._getProperties(s, r, i);
672
+ const o = this._normalizeLdpContains(await s["ldp:contains"]);
673
+ return await this._expandContainer(o, r, i);
672
674
  }
673
- return;
675
+ return await this._getProperties(s, r, i);
674
676
  } catch {
675
677
  }
676
678
  }
@@ -682,133 +684,136 @@ class b extends Rt {
682
684
  return l;
683
685
  }
684
686
  }
685
- E([
686
- y({ attribute: "default-data-src", reflect: !0 })
687
- ], b.prototype, "defaultDataSrc");
688
- E([
689
- y({ attribute: "data-src", reflect: !0 })
690
- ], b.prototype, "dataSrc");
691
- E([
692
- y({ attribute: "nested-field" })
693
- ], b.prototype, "nestedField");
694
- E([
695
- y({ attribute: "uniq" })
696
- ], b.prototype, "uniq");
697
- E([
698
- y({ attribute: "route" })
699
- ], b.prototype, "route");
700
- E([
701
- y({ attribute: !1 })
702
- ], b.prototype, "cherryPickedProperties");
703
- E([
704
- f()
705
- ], b.prototype, "orbit");
706
- E([
707
- f()
708
- ], b.prototype, "currentRoute");
709
- function B(e) {
687
+ x([
688
+ m()
689
+ ], $.prototype, "ready");
690
+ x([
691
+ v({ attribute: "default-data-src", reflect: !0 })
692
+ ], $.prototype, "defaultDataSrc");
693
+ x([
694
+ v({ attribute: "data-src", reflect: !0 })
695
+ ], $.prototype, "dataSrc");
696
+ x([
697
+ v({ attribute: "nested-field" })
698
+ ], $.prototype, "nestedField");
699
+ x([
700
+ v({ attribute: "uniq" })
701
+ ], $.prototype, "uniq");
702
+ x([
703
+ v({ attribute: "route" })
704
+ ], $.prototype, "route");
705
+ x([
706
+ v({ attribute: !1 })
707
+ ], $.prototype, "cherryPickedProperties");
708
+ x([
709
+ m()
710
+ ], $.prototype, "orbit");
711
+ x([
712
+ m()
713
+ ], $.prototype, "currentRoute");
714
+ function H(e) {
710
715
  return e ? e.replace(/^urn:uuid:/i, "").replace(/^urn:tems:/i, "") : "";
711
716
  }
712
- function Be(e, t, s) {
717
+ function ze(e, t, r) {
713
718
  if (!e) return null;
714
719
  const i = JSON.parse(JSON.stringify(e));
715
- i["@id"] && (i["@id"] = B(i["@id"]));
716
- const r = N(t, ["@id"]) || "";
717
- return i.target = B(r), i;
720
+ i["@id"] && (i["@id"] = H(i["@id"]));
721
+ const s = q(t, ["@id"]) || "";
722
+ return i.target = H(s), i;
718
723
  }
719
- function N(e, t) {
724
+ function q(e, t) {
720
725
  if (t.length === 0)
721
726
  return;
722
- let s = e;
727
+ let r = e;
723
728
  for (const i of t) {
724
- if (s == null)
729
+ if (r == null)
725
730
  return;
726
- s = s[i];
731
+ r = r[i];
727
732
  }
728
- return s;
733
+ return r;
729
734
  }
730
- class qe {
735
+ class Ve {
731
736
  constructor(t) {
732
737
  this.config = t;
733
738
  }
734
739
  /**
735
740
  * Maps source data to TEMS-compatible resource
736
741
  */
737
- map(t, s = {}) {
742
+ map(t, r = {}) {
738
743
  const i = {};
739
- for (const [r, o] of Object.entries(this.config.baseFields)) {
740
- const n = this.mapField(t, o, s);
741
- n !== void 0 && (i[r] = n);
744
+ for (const [s, o] of Object.entries(this.config.baseFields)) {
745
+ const n = this.mapField(t, o, r);
746
+ n !== void 0 && (i[s] = n);
742
747
  }
743
748
  if (this.config.containerFields)
744
- for (const [r, o] of Object.entries(
749
+ for (const [s, o] of Object.entries(
745
750
  this.config.containerFields
746
751
  )) {
747
- const n = this.mapContainerField(t, o, s);
748
- n && (i[r] = n);
752
+ const n = this.mapContainerField(t, o, r);
753
+ n && (i[s] = n);
749
754
  }
750
755
  if (this.config.nestedObjects)
751
- for (const [r, o] of Object.entries(
756
+ for (const [s, o] of Object.entries(
752
757
  this.config.nestedObjects
753
758
  )) {
754
- const n = this.mapNestedObject(t, o, s);
755
- n && (i[r] = n);
759
+ const n = this.mapNestedObject(t, o, r);
760
+ n && (i[s] = n);
756
761
  }
757
762
  if (this.config.contractFields)
758
- for (const [r, o] of Object.entries(
763
+ for (const [s, o] of Object.entries(
759
764
  this.config.contractFields
760
765
  )) {
761
- const n = this.mapField(t, o, s);
762
- n !== void 0 && (i[r] = n);
766
+ const n = this.mapField(t, o, r);
767
+ n !== void 0 && (i[s] = n);
763
768
  }
764
- return this.config.postProcess ? this.config.postProcess(i, t, s) : i;
769
+ return this.config.postProcess ? this.config.postProcess(i, t, r) : i;
765
770
  }
766
771
  /**
767
772
  * Maps a single field
768
773
  */
769
- mapField(t, s, i) {
770
- let r = N(t, s.source);
771
- return s.transform && (r = s.transform(r, t, i)), (r == null || r === "") && s.fallback && (typeof s.fallback == "function" ? r = s.fallback(t, i) : r = N(t, [s.fallback])), (r == null || r === "") && (r = s.defaultValue), r;
774
+ mapField(t, r, i) {
775
+ let s = q(t, r.source);
776
+ return r.transform && (s = r.transform(s, t, i)), (s == null || s === "") && r.fallback && (typeof r.fallback == "function" ? s = r.fallback(t, i) : s = q(t, [r.fallback])), (s == null || s === "") && (s = r.defaultValue), s;
772
777
  }
773
778
  /**
774
779
  * Maps a container field (array wrapped in LDP container)
775
780
  */
776
- mapContainerField(t, s, i) {
777
- let r = N(t, s.source);
778
- if (!r)
781
+ mapContainerField(t, r, i) {
782
+ let s = q(t, r.source);
783
+ if (!s)
779
784
  return null;
780
- s.transform && (r = s.transform(r, t, i)), Array.isArray(r) || (r = [r]), s.filter && (r = r.filter(
781
- (n, a) => s.filter(n, a, i)
785
+ r.transform && (s = r.transform(s, t, i)), Array.isArray(s) || (s = [s]), r.filter && (s = s.filter(
786
+ (n, a) => r.filter(n, a, i)
782
787
  ));
783
- const o = r.map((n, a) => {
788
+ const o = s.map((n, a) => {
784
789
  const c = {
785
- "@type": s.itemType
790
+ "@type": r.itemType
786
791
  };
787
- for (const [h, m] of Object.entries(s.itemFields)) {
788
- const p = m(n, a, i);
789
- p !== void 0 && (c[h] = p);
792
+ for (const [d, p] of Object.entries(r.itemFields)) {
793
+ const u = p(n, a, i);
794
+ u !== void 0 && (c[d] = u);
790
795
  }
791
796
  return c;
792
797
  });
793
798
  return {
794
- "@type": s.containerType,
799
+ "@type": r.containerType,
795
800
  "ldp:contains": o
796
801
  };
797
802
  }
798
803
  /**
799
804
  * Maps a nested object
800
805
  */
801
- mapNestedObject(t, s, i) {
802
- const r = N(t, s.source);
803
- if (!r)
806
+ mapNestedObject(t, r, i) {
807
+ const s = q(t, r.source);
808
+ if (!s)
804
809
  return null;
805
810
  const o = {};
806
- s.type && (o["@type"] = s.type);
807
- for (const [n, a] of Object.entries(s.fields)) {
811
+ r.type && (o["@type"] = r.type);
812
+ for (const [n, a] of Object.entries(r.fields)) {
808
813
  let c;
809
- Array.isArray(a) ? c = N(r, a) : c = this.mapField(r, a, i), c !== void 0 && (o[n] = c);
814
+ Array.isArray(a) ? c = q(s, a) : c = this.mapField(s, a, i), c !== void 0 && (o[n] = c);
810
815
  }
811
- return Object.keys(o).length > (s.type ? 1 : 0) ? o : null;
816
+ return Object.keys(o).length > (r.type ? 1 : 0) ? o : null;
812
817
  }
813
818
  /**
814
819
  * Unwraps LDP containers (converts ldp:contains arrays to plain arrays)
@@ -817,32 +822,32 @@ class qe {
817
822
  * for rendering.
818
823
  */
819
824
  static unwrapLdpContainers(t) {
820
- const s = { ...t };
821
- for (const [i, r] of Object.entries(s))
822
- r && typeof r == "object" && r["@type"] === "ldp:Container" && r["ldp:contains"] && (s[i] = r["ldp:contains"]);
823
- return s;
825
+ const r = { ...t };
826
+ for (const [i, s] of Object.entries(r))
827
+ s && typeof s == "object" && s["@type"] === "ldp:Container" && s["ldp:contains"] && (r[i] = s["ldp:contains"]);
828
+ return r;
824
829
  }
825
830
  }
826
- function g(e) {
831
+ function y(e) {
827
832
  return e["dcat:distribution"]?.[0] || e.properties || e;
828
833
  }
829
- function Ht(e) {
830
- const t = g(e);
834
+ function Vt(e) {
835
+ const t = y(e);
831
836
  return e["dcat:endpointUrl"] || e["dcat:endpointURL"] || e["http://www.w3.org/ns/dcat#endpointUrl"] || e.endpointUrl || e.endpointURL || // Then check distribution/props level
832
837
  t["http://www.w3.org/ns/dcat#endpointUrl"] || t["dcat:endpointUrl"] || t["dcat:endpointURL"] || t["dcat:accessService"]?.["dcat:endpointURL"] || t.endpointURL || t.endpointUrl || "";
833
838
  }
834
- function He(e) {
835
- const t = g(e);
839
+ function We(e) {
840
+ const t = y(e);
836
841
  return e.contenttype || e.contentType || e["http://www.w3.org/ns/dcat#mediaType"] || e["dcat:mediaType"] || // Then check distribution/props level
837
842
  t.contenttype || t.contentType || t["http://www.w3.org/ns/dcat#mediaType"] || t["dcat:mediaType"] || "";
838
843
  }
839
- const ze = {
844
+ const Ke = {
840
845
  baseFields: {
841
846
  "@id": {
842
847
  source: ["@id"],
843
- transform: (e, t, s) => {
844
- const r = B(e || t.id || "") || e?.split("/").pop() || "unknown", o = s.providerParticipantId ? `${encodeURIComponent(s.providerParticipantId)}/` : "";
845
- return `${s.temsServiceBase || "https://api.tems.example.com/services/"}${o}${encodeURIComponent(r)}/`;
848
+ transform: (e, t, r) => {
849
+ const s = H(e || t.id || "") || e?.split("/").pop() || "unknown", o = r.providerParticipantId ? `${encodeURIComponent(r.providerParticipantId)}/` : "";
850
+ return `${r.temsServiceBase || "https://api.tems.example.com/services/"}${o}${encodeURIComponent(s)}/`;
846
851
  }
847
852
  },
848
853
  "@type": {
@@ -852,12 +857,12 @@ const ze = {
852
857
  name: {
853
858
  source: [],
854
859
  transform: (e, t) => {
855
- const s = g(t);
860
+ const r = y(t);
856
861
  return (
857
862
  // Source-level fields (EDC catalog returns these at top level)
858
863
  t.name || t.title || t["dct:title"] || t["dcterms:title"] || // EDC namespace fields at source level
859
864
  t["https://w3id.org/edc/v0.0.1/ns/name"] || t["edc:name"] || // Distribution/props level
860
- s["dct:title"] || s["dcterms:title"] || s.title || s["https://w3id.org/edc/v0.0.1/ns/name"] || s["edc:name"] || s.name || // Fall back to ID but extract meaningful part
865
+ r["dct:title"] || r["dcterms:title"] || r.title || r["https://w3id.org/edc/v0.0.1/ns/name"] || r["edc:name"] || r.name || // Fall back to ID but extract meaningful part
861
866
  (t["@id"]?.startsWith("urn:uuid:") ? t["@id"] : t["@id"]?.split("/").pop() || t["@id"]) || t.id || ""
862
867
  );
863
868
  }
@@ -865,101 +870,101 @@ const ze = {
865
870
  description: {
866
871
  source: [],
867
872
  transform: (e, t) => {
868
- const s = g(t);
873
+ const r = y(t);
869
874
  return (
870
875
  // Source-level fields (EDC catalog returns these at top level)
871
876
  t.description || t["dct:description"] || t["dcterms:description"] || t["https://w3id.org/edc/v0.0.1/ns/description"] || t["edc:description"] || // Distribution/props level
872
- s["dct:description"] || s["dcterms:description"] || s.description || s["https://w3id.org/edc/v0.0.1/ns/description"] || s["edc:description"] || ""
877
+ r["dct:description"] || r["dcterms:description"] || r.description || r["https://w3id.org/edc/v0.0.1/ns/description"] || r["edc:description"] || ""
873
878
  );
874
879
  }
875
880
  },
876
881
  long_description: {
877
882
  source: [],
878
883
  transform: (e, t) => {
879
- const s = g(t), i = Array.isArray(s["dcat:keyword"]) ? s["dcat:keyword"] : s["dcat:keyword"] ? [s["dcat:keyword"]] : [], r = s["dct:description"] || s["dcterms:description"] || s.description || "";
880
- return i.length > 0 ? `Keywords: ${i.join(", ")}` : r;
884
+ const r = y(t), i = Array.isArray(r["dcat:keyword"]) ? r["dcat:keyword"] : r["dcat:keyword"] ? [r["dcat:keyword"]] : [], s = r["dct:description"] || r["dcterms:description"] || r.description || "";
885
+ return i.length > 0 ? `Keywords: ${i.join(", ")}` : s;
881
886
  }
882
887
  },
883
888
  url: {
884
889
  source: [],
885
- transform: (e, t) => Ht(t)
890
+ transform: (e, t) => Vt(t)
886
891
  },
887
892
  endpointUrl: {
888
893
  source: [],
889
- transform: (e, t) => Ht(t)
894
+ transform: (e, t) => Vt(t)
890
895
  },
891
896
  contentType: {
892
897
  source: [],
893
- transform: (e, t) => He(t)
898
+ transform: (e, t) => We(t)
894
899
  },
895
900
  activation_status: {
896
901
  source: [],
897
902
  transform: (e, t) => {
898
- const s = g(t);
899
- return (s["dcat:endpointURL"] || s["dcat:accessService"]?.["dcat:endpointURL"] || s.endpointURL || "").trim().length > 0;
903
+ const r = y(t);
904
+ return (r["dcat:endpointURL"] || r["dcat:accessService"]?.["dcat:endpointURL"] || r.endpointURL || "").trim().length > 0;
900
905
  }
901
906
  },
902
907
  is_in_app: {
903
908
  source: [],
904
909
  transform: (e, t) => {
905
- const s = g(t);
906
- return (s["dcat:endpointURL"] || s["dcat:accessService"]?.["dcat:endpointURL"] || s.endpointURL || "").trim().length > 0;
910
+ const r = y(t);
911
+ return (r["dcat:endpointURL"] || r["dcat:accessService"]?.["dcat:endpointURL"] || r.endpointURL || "").trim().length > 0;
907
912
  }
908
913
  },
909
914
  is_external: {
910
915
  source: [],
911
916
  transform: (e, t) => {
912
- const s = g(t);
913
- return (s["dcat:endpointURL"] || s["dcat:accessService"]?.["dcat:endpointURL"] || s.endpointURL || "").trim().length > 0;
917
+ const r = y(t);
918
+ return (r["dcat:endpointURL"] || r["dcat:accessService"]?.["dcat:endpointURL"] || r.endpointURL || "").trim().length > 0;
914
919
  }
915
920
  },
916
921
  is_api: {
917
922
  source: [],
918
923
  transform: (e, t) => {
919
- const s = g(t);
920
- return (s["dcat:endpointURL"] || s["dcat:accessService"]?.["dcat:endpointURL"] || s.endpointURL || "").trim().length > 0;
924
+ const r = y(t);
925
+ return (r["dcat:endpointURL"] || r["dcat:accessService"]?.["dcat:endpointURL"] || r.endpointURL || "").trim().length > 0;
921
926
  }
922
927
  },
923
928
  contact_url: {
924
929
  source: [],
925
930
  transform: (e, t) => {
926
- const s = g(t);
927
- return s["dcat:endpointDescription"] || s["dct:conformsTo"] || "";
931
+ const r = y(t);
932
+ return r["dcat:endpointDescription"] || r["dct:conformsTo"] || "";
928
933
  }
929
934
  },
930
935
  documentation_url: {
931
936
  source: [],
932
937
  transform: (e, t) => {
933
- const s = g(t);
934
- return s["dcat:endpointDescription"] || s["dct:conformsTo"] || "";
938
+ const r = y(t);
939
+ return r["dcat:endpointDescription"] || r["dct:conformsTo"] || "";
935
940
  }
936
941
  },
937
942
  creation_date: {
938
943
  source: [],
939
944
  transform: (e, t) => {
940
- const s = g(t);
941
- return s["dct:issued"] || s["dcterms:issued"] || (/* @__PURE__ */ new Date()).toISOString();
945
+ const r = y(t);
946
+ return r["dct:issued"] || r["dcterms:issued"] || (/* @__PURE__ */ new Date()).toISOString();
942
947
  }
943
948
  },
944
949
  update_date: {
945
950
  source: [],
946
951
  transform: (e, t) => {
947
- const s = g(t), i = s["dct:issued"] || s["dcterms:issued"] || (/* @__PURE__ */ new Date()).toISOString();
948
- return s["dct:modified"] || s["dcterms:modified"] || i;
952
+ const r = y(t), i = r["dct:issued"] || r["dcterms:issued"] || (/* @__PURE__ */ new Date()).toISOString();
953
+ return r["dct:modified"] || r["dcterms:modified"] || i;
949
954
  }
950
955
  },
951
956
  release_date: {
952
957
  source: [],
953
958
  transform: (e, t) => {
954
- const s = g(t);
955
- return s["dct:issued"] || s["dcterms:issued"] || (/* @__PURE__ */ new Date()).toISOString();
959
+ const r = y(t);
960
+ return r["dct:issued"] || r["dcterms:issued"] || (/* @__PURE__ */ new Date()).toISOString();
956
961
  }
957
962
  },
958
963
  last_update: {
959
964
  source: [],
960
965
  transform: (e, t) => {
961
- const s = g(t), i = s["dct:issued"] || s["dcterms:issued"] || (/* @__PURE__ */ new Date()).toISOString();
962
- return s["dct:modified"] || s["dcterms:modified"] || i;
966
+ const r = y(t), i = r["dct:issued"] || r["dcterms:issued"] || (/* @__PURE__ */ new Date()).toISOString();
967
+ return r["dct:modified"] || r["dcterms:modified"] || i;
963
968
  }
964
969
  },
965
970
  activation_date: {
@@ -985,11 +990,11 @@ const ze = {
985
990
  containerType: "ldp:Container",
986
991
  itemType: "tems:Category",
987
992
  transform: (e, t) => {
988
- const i = g(t)["dcat:keyword"];
993
+ const i = y(t)["dcat:keyword"];
989
994
  return i ? Array.isArray(i) ? i : [i] : [];
990
995
  },
991
996
  itemFields: {
992
- "@id": (e, t, s) => `${s.temsCategoryBase || "https://api.tems.example.com/categories/"}${encodeURIComponent(e)}/`,
997
+ "@id": (e, t, r) => `${r.temsCategoryBase || "https://api.tems.example.com/categories/"}${encodeURIComponent(e)}/`,
993
998
  name: (e) => e
994
999
  }
995
1000
  },
@@ -998,15 +1003,15 @@ const ze = {
998
1003
  containerType: "ldp:Container",
999
1004
  itemType: "tems:Image",
1000
1005
  transform: (e, t) => {
1001
- const s = g(t), i = [];
1002
- return s["foaf:thumbnail"]?.["rdf:resource"] && i.push(s["foaf:thumbnail"]["rdf:resource"]), s["dcterms:creator"]?.["foaf:thumbnail"]?.["rdf:resource"] && i.push(
1003
- s["dcterms:creator"]["foaf:thumbnail"]["rdf:resource"]
1006
+ const r = y(t), i = [];
1007
+ return r["foaf:thumbnail"]?.["rdf:resource"] && i.push(r["foaf:thumbnail"]["rdf:resource"]), r["dcterms:creator"]?.["foaf:thumbnail"]?.["rdf:resource"] && i.push(
1008
+ r["dcterms:creator"]["foaf:thumbnail"]["rdf:resource"]
1004
1009
  ), i;
1005
1010
  },
1006
1011
  itemFields: {
1007
- "@id": (e, t, s) => {
1012
+ "@id": (e, t, r) => {
1008
1013
  const i = e.split("/").pop() || `image-${t}`;
1009
- return `${s.temsImageBase || "https://api.tems.example.com/images/"}${encodeURIComponent(i)}/`;
1014
+ return `${r.temsImageBase || "https://api.tems.example.com/images/"}${encodeURIComponent(i)}/`;
1010
1015
  },
1011
1016
  url: (e) => e,
1012
1017
  iframe: () => !1,
@@ -1021,27 +1026,27 @@ const ze = {
1021
1026
  fields: {
1022
1027
  "@id": {
1023
1028
  source: [],
1024
- transform: (e, t, s) => {
1025
- const i = s.providerParticipantId || s.providerName || "unknown";
1026
- return `${s.temsProviderBase || "https://api.tems.example.com/providers/"}${encodeURIComponent(i)}/`;
1029
+ transform: (e, t, r) => {
1030
+ const i = r.providerParticipantId || r.providerName || "unknown";
1031
+ return `${r.temsProviderBase || "https://api.tems.example.com/providers/"}${encodeURIComponent(i)}/`;
1027
1032
  }
1028
1033
  },
1029
1034
  name: {
1030
1035
  source: [],
1031
- transform: (e, t, s) => g(t)["dcterms:creator"]?.["foaf:name"] || s.providerName || ""
1036
+ transform: (e, t, r) => y(t)["dcterms:creator"]?.["foaf:name"] || r.providerName || ""
1032
1037
  },
1033
1038
  image: {
1034
1039
  source: [],
1035
- transform: (e, t, s) => {
1036
- const r = g(t)["dcterms:creator"]?.["foaf:thumbnail"]?.["rdf:resource"];
1037
- if (!r) return;
1038
- const o = r.split("/").pop() || "provider-logo";
1040
+ transform: (e, t, r) => {
1041
+ const s = y(t)["dcterms:creator"]?.["foaf:thumbnail"]?.["rdf:resource"];
1042
+ if (!s) return;
1043
+ const o = s.split("/").pop() || "provider-logo";
1039
1044
  return {
1040
1045
  // FIXME: Avoid magic strings
1041
- "@id": `${s.temsImageBase || "https://api.tems.example.com/images/"}${encodeURIComponent(o)}/`,
1046
+ "@id": `${r.temsImageBase || "https://api.tems.example.com/images/"}${encodeURIComponent(o)}/`,
1042
1047
  "@type": "tems:Image",
1043
1048
  iframe: !1,
1044
- url: r,
1049
+ url: s,
1045
1050
  name: o
1046
1051
  };
1047
1052
  }
@@ -1052,53 +1057,53 @@ const ze = {
1052
1057
  contractFields: {
1053
1058
  counterPartyAddress: {
1054
1059
  source: [],
1055
- transform: (e, t, s) => s.providerAddress
1060
+ transform: (e, t, r) => r.providerAddress
1056
1061
  },
1057
1062
  counterPartyId: {
1058
1063
  source: [],
1059
- transform: (e, t, s) => s.providerParticipantId || s.providerName
1064
+ transform: (e, t, r) => r.providerParticipantId || r.providerName
1060
1065
  },
1061
1066
  assetId: {
1062
1067
  source: ["@id"],
1063
- transform: (e, t) => B(e || t.id || "")
1068
+ transform: (e, t) => H(e || t.id || "")
1064
1069
  },
1065
1070
  datasetId: {
1066
1071
  source: ["@id"],
1067
- transform: (e, t) => B(e || t.id || "")
1072
+ transform: (e, t) => H(e || t.id || "")
1068
1073
  },
1069
1074
  // Index endpoint URL for index assets - try multiple property variations
1070
1075
  // Priority: source-level dcat:endpointUrl (index endpoint) over props-level dcat:endpointURL (protocol URL)
1071
1076
  indexEndpointUrl: {
1072
1077
  source: [],
1073
- transform: (e, t, s) => {
1074
- const i = g(t);
1078
+ transform: (e, t, r) => {
1079
+ const i = y(t);
1075
1080
  console.log("[DSP Mapping] indexEndpointUrl extraction for:", {
1076
1081
  assetId: t["@id"] || t.id,
1077
1082
  assetName: t.name || i.name || i["dct:title"],
1078
- provider: s.providerName,
1079
- providerParticipantId: s.providerParticipantId,
1083
+ provider: r.providerName,
1084
+ providerParticipantId: r.providerParticipantId,
1080
1085
  "source.dcat:endpointUrl": t["dcat:endpointUrl"],
1081
1086
  "props.dcat:endpointUrl": i["dcat:endpointUrl"],
1082
1087
  "source.dcat:endpointURL": t["dcat:endpointURL"],
1083
1088
  "props.dcat:accessService": i["dcat:accessService"]
1084
1089
  });
1085
- const r = t["dcat:endpointUrl"] || i["dcat:endpointUrl"] || t["dcat:endpointURL"] || i["dcat:accessService"]?.["dcat:endpointUrl"] || i["dcat:accessService"]?.["dcat:endpointURL"] || i.endpointUrl || i.endpointURL || void 0;
1086
- return console.log("[DSP Mapping] indexEndpointUrl result:", r), r;
1090
+ const s = t["dcat:endpointUrl"] || i["dcat:endpointUrl"] || t["dcat:endpointURL"] || i["dcat:accessService"]?.["dcat:endpointUrl"] || i["dcat:accessService"]?.["dcat:endpointURL"] || i.endpointUrl || i.endpointURL || void 0;
1091
+ return console.log("[DSP Mapping] indexEndpointUrl result:", s), s;
1087
1092
  }
1088
1093
  },
1089
1094
  policy: {
1090
1095
  source: ["odrl:hasPolicy"],
1091
1096
  fallback: (e) => e.hasPolicy,
1092
- transform: (e, t, s) => {
1097
+ transform: (e, t, r) => {
1093
1098
  if (!e) return;
1094
- const i = Be(e, t);
1099
+ const i = ze(e, t);
1095
1100
  if (i) {
1096
- const r = (o) => Array.isArray(o) ? o.map((n) => (n["@id"] && (n["@id"] = B(n["@id"])), n)) : o;
1097
- i["odrl:permission"] && (i["odrl:permission"] = r(
1101
+ const s = (o) => Array.isArray(o) ? o.map((n) => (n["@id"] && (n["@id"] = H(n["@id"])), n)) : o;
1102
+ i["odrl:permission"] && (i["odrl:permission"] = s(
1098
1103
  i["odrl:permission"]
1099
- )), i["odrl:prohibition"] && (i["odrl:prohibition"] = r(
1104
+ )), i["odrl:prohibition"] && (i["odrl:prohibition"] = s(
1100
1105
  i["odrl:prohibition"]
1101
- )), i["odrl:obligation"] && (i["odrl:obligation"] = r(
1106
+ )), i["odrl:obligation"] && (i["odrl:obligation"] = s(
1102
1107
  i["odrl:obligation"]
1103
1108
  ));
1104
1109
  }
@@ -1107,29 +1112,29 @@ const ze = {
1107
1112
  }
1108
1113
  },
1109
1114
  // Post-processing to add provider metadata fields
1110
- postProcess: (e, t, s) => ({
1115
+ postProcess: (e, t, r) => ({
1111
1116
  ...e,
1112
- _provider: s.providerName,
1113
- _providerAddress: s.providerAddress,
1114
- _providerColor: s.providerColor || "#1976d2",
1115
- _providerParticipantId: s.providerParticipantId
1117
+ _provider: r.providerName,
1118
+ _providerAddress: r.providerAddress,
1119
+ _providerColor: r.providerColor || "#1976d2",
1120
+ _providerParticipantId: r.providerParticipantId
1116
1121
  })
1117
1122
  };
1118
- var Ve = Object.defineProperty, R = (e, t, s, i) => {
1119
- for (var r = void 0, o = e.length - 1, n; o >= 0; o--)
1120
- (n = e[o]) && (r = n(t, s, r) || r);
1121
- return r && Ve(t, s, r), r;
1123
+ var Ge = Object.defineProperty, j = (e, t, r, i) => {
1124
+ for (var s = void 0, o = e.length - 1, n; o >= 0; o--)
1125
+ (n = e[o]) && (s = n(t, r, s) || s);
1126
+ return s && Ge(t, r, s), s;
1122
1127
  };
1123
- class S extends b {
1128
+ class P extends $ {
1124
1129
  constructor() {
1125
1130
  super(...arguments), this.providers = [];
1126
1131
  }
1127
1132
  willUpdate(t) {
1128
1133
  (!this.providers || this.providers.length === 0) && this.component?.parameters?.providers && (this.providers = this.component.parameters.providers || []);
1129
1134
  }
1130
- async _attach(t, s, i) {
1131
- if (!this.orbit && window.orbit && (this.orbit = window.orbit, s)) {
1132
- if (re({
1135
+ async _attach(t, r, i) {
1136
+ if (!this.orbit && window.orbit && (this.orbit = window.orbit, r)) {
1137
+ if (ne({
1133
1138
  component: this,
1134
1139
  defaultRoute: t,
1135
1140
  ignoreRouter: i
@@ -1137,9 +1142,9 @@ class S extends b {
1137
1142
  const o = this.component?.parameters;
1138
1143
  o?.["participant-connector-uri"] && (this.participantConnectorUri = o["participant-connector-uri"]), o?.["participant-api-key"] && (this.participantApiKey = o["participant-api-key"]), o?.providers && (this.providers = o.providers), o?.["participant-id"] && (this.participantId = o["participant-id"]);
1139
1144
  }
1140
- const r = this.component?.parameters;
1141
- if (r?.["api-gateway-config"]) {
1142
- this.apiGatewayConfig = r["api-gateway-config"];
1145
+ const s = this.component?.parameters;
1146
+ if (s?.["api-gateway-config"]) {
1147
+ this.apiGatewayConfig = s["api-gateway-config"];
1143
1148
  try {
1144
1149
  this._apiGatewayConfigParsed = typeof this.apiGatewayConfig == "string" ? JSON.parse(this.apiGatewayConfig) : this.apiGatewayConfig;
1145
1150
  } catch {
@@ -1149,7 +1154,7 @@ class S extends b {
1149
1154
  if (!this.storeService && this.participantConnectorUri)
1150
1155
  try {
1151
1156
  const o = `dsp-connector-${this.component.uniq}`, n = {
1152
- type: he.DataspaceConnector,
1157
+ type: me.DataspaceConnector,
1153
1158
  endpoint: this.participantConnectorUri,
1154
1159
  catalogEndpoint: `${this.participantConnectorUri}/management/v3/catalog/request`,
1155
1160
  contractNegotiationEndpoint: `${this.participantConnectorUri}/management/v3/contractnegotiations`,
@@ -1165,7 +1170,7 @@ class S extends b {
1165
1170
  apiGatewayConfig: this._apiGatewayConfigParsed
1166
1171
  }
1167
1172
  };
1168
- this.storeService = pe.addStore(o, n), this.dspStoreService = this.storeService, window.dspStore || (window.dspStore = this.storeService);
1173
+ this.storeService = ge.addStore(o, n), this.dspStoreService = this.storeService, window.dspStore || (window.dspStore = this.storeService);
1169
1174
  } catch (o) {
1170
1175
  console.error("DSP Store initialization error:", o);
1171
1176
  }
@@ -1180,12 +1185,12 @@ class S extends b {
1180
1185
  if (!this.storeService || !this.providers || this.providers.length === 0)
1181
1186
  return console.warn("DSP store or providers not configured"), [];
1182
1187
  try {
1183
- const t = "https://api.tems.example.com/services/", s = new qe(ze), i = this.providers.map(async (n) => {
1188
+ const t = "https://api.tems.example.com/services/", r = new Ve(Ke), i = this.providers.map(async (n) => {
1184
1189
  try {
1185
1190
  const a = await this.storeService.getCatalog(n.address);
1186
1191
  if (a?.["dcat:dataset"]) {
1187
- const c = a["dcat:dataset"], h = Array.isArray(c) ? c : [c], m = a.participantId || a["edc:participantId"] || a["https://w3id.org/edc/v0.0.1/ns/participantId"], p = n.participantId || m;
1188
- return h.map((_) => {
1192
+ const c = a["dcat:dataset"], d = Array.isArray(c) ? c : [c], p = a.participantId || a["edc:participantId"] || a["https://w3id.org/edc/v0.0.1/ns/participantId"], u = n.participantId || p;
1193
+ return d.map((g) => {
1189
1194
  const w = {
1190
1195
  temsServiceBase: t,
1191
1196
  temsCategoryBase: t.replace(
@@ -1201,9 +1206,9 @@ class S extends b {
1201
1206
  providerName: n.name,
1202
1207
  providerAddress: n.address,
1203
1208
  providerColor: n.color,
1204
- providerParticipantId: p
1209
+ providerParticipantId: u
1205
1210
  };
1206
- return s.map(_, w);
1211
+ return r.map(g, w);
1207
1212
  });
1208
1213
  }
1209
1214
  return [];
@@ -1223,64 +1228,83 @@ class S extends b {
1223
1228
  return this.storeService;
1224
1229
  }
1225
1230
  }
1226
- R([
1227
- y({ attribute: "participant-connector-uri", reflect: !0 })
1228
- ], S.prototype, "participantConnectorUri");
1229
- R([
1230
- y({ attribute: "participant-id", reflect: !0 })
1231
- ], S.prototype, "participantId");
1232
- R([
1233
- y({ attribute: "participant-api-key", reflect: !0 })
1234
- ], S.prototype, "participantApiKey");
1235
- R([
1236
- y({ attribute: "api-gateway-config", reflect: !0 })
1237
- ], S.prototype, "apiGatewayConfig");
1238
- R([
1239
- f()
1240
- ], S.prototype, "storeService");
1241
- R([
1242
- f()
1243
- ], S.prototype, "dspStoreService");
1244
- R([
1245
- f()
1246
- ], S.prototype, "_apiGatewayConfigParsed");
1247
- R([
1248
- y({ type: Array })
1249
- ], S.prototype, "providers");
1250
- const We = (e, { keywords: t = [], attributes: s = ["dataSrc"] } = {}) => {
1231
+ j([
1232
+ v({ attribute: "participant-connector-uri", reflect: !0 })
1233
+ ], P.prototype, "participantConnectorUri");
1234
+ j([
1235
+ v({ attribute: "participant-id", reflect: !0 })
1236
+ ], P.prototype, "participantId");
1237
+ j([
1238
+ v({ attribute: "participant-api-key", reflect: !0 })
1239
+ ], P.prototype, "participantApiKey");
1240
+ j([
1241
+ v({ attribute: "api-gateway-config", reflect: !0 })
1242
+ ], P.prototype, "apiGatewayConfig");
1243
+ j([
1244
+ m()
1245
+ ], P.prototype, "storeService");
1246
+ j([
1247
+ m()
1248
+ ], P.prototype, "dspStoreService");
1249
+ j([
1250
+ m()
1251
+ ], P.prototype, "_apiGatewayConfigParsed");
1252
+ j([
1253
+ v({ type: Array })
1254
+ ], P.prototype, "providers");
1255
+ const oe = (e, { keywords: t = [], attributes: r = ["dataSrc"] } = {}) => {
1251
1256
  const i = () => {
1252
- t && s && (e.caching === void 0 && (e.caching = 0), e.hasCachedDatas === void 0 && (e.hasCachedDatas = !1), e.cacheListener = (r) => {
1253
- const o = r.detail.id || r.detail.resource["@id"];
1254
- if (t.some((n) => o?.includes(n))) {
1255
- for (const n of s)
1256
- e[n] && o !== e[n] && window.sibStore.clearCache(e[n]);
1257
- e.caching++, e.hasCachedDatas = !1, e.requestUpdate();
1258
- }
1259
- }, e._subscriptions.add(["save", e.cacheListener]), e._subscribe());
1257
+ if (!t.length || !r.length) return;
1258
+ e.caching === void 0 && (e.caching = 0), e.hasCachedDatas === void 0 && (e.hasCachedDatas = !1);
1259
+ let s = !1;
1260
+ const o = new Set(t);
1261
+ e.cacheListener = (n) => {
1262
+ const a = n.detail.id || n.detail.resource?.["@id"];
1263
+ if (!a || !Array.from(o).some((p) => {
1264
+ const u = a.indexOf(p);
1265
+ return u !== -1 && (u === 0 || a[u - 1] === "/");
1266
+ })) return;
1267
+ let d = !1;
1268
+ for (const p of r)
1269
+ e[p] && a !== e[p] && (window.sibStore.clearCache(e[p]), d = !0);
1270
+ d && (e.caching++, e.hasCachedDatas = !1, s || (s = !0, requestAnimationFrame(() => {
1271
+ e.requestUpdate(), s = !1;
1272
+ })));
1273
+ }, e._subscriptions.add(["save", e.cacheListener]), e._subscribe();
1260
1274
  };
1261
- document.readyState !== "complete" ? document.addEventListener("DOMContentLoaded", i) : i();
1275
+ if (document.readyState !== "complete") {
1276
+ const s = () => {
1277
+ document.readyState === "complete" && (document.removeEventListener("readystatechange", s), i());
1278
+ };
1279
+ document.addEventListener("readystatechange", s);
1280
+ } else
1281
+ i();
1262
1282
  };
1263
- function Ke() {
1264
- return Math.random().toString(16).slice(2);
1283
+ function Je() {
1284
+ return `${Date.now()}-${Math.random().toString(16).slice(2)}`;
1265
1285
  }
1266
- const re = ({
1286
+ const ne = ({
1267
1287
  component: e,
1268
1288
  defaultRoute: t = !1,
1269
- ignoreRouter: s = !1
1289
+ ignoreRouter: r = !1
1270
1290
  }) => {
1271
- if (e.uniq || (e.uniq = Ke(), t && !e.route && !s && (e.route = t)), e._subscriptions = /* @__PURE__ */ new Set(), !s) {
1291
+ if (e.uniq || (e.uniq = Je(), t && !e.route && !r && (e.route = t)), e._subscriptions = /* @__PURE__ */ new Set(), !r) {
1272
1292
  e.route || (e.route = e.uniq, window.orbit && (e.route = window.orbit.getRoute(e.uniq))), e.noRouter = !0;
1273
1293
  let i = document.querySelector("solid-router");
1274
- for (; i; )
1275
- e.noRouter = !1, e.currentRoute = i.currentRouteName, e.currentResource = window.sibRouter.currentResource, i = document.querySelector(
1276
- `[data-view="${i.currentRouteName}"] solid-router`
1277
- );
1294
+ const s = window.sibRouter.currentResource;
1295
+ for (; i; ) {
1296
+ e.noRouter = !1, e.currentRoute = i.currentRouteName, e.currentResource = s;
1297
+ const o = `[data-view="${i.currentRouteName}"] solid-router`;
1298
+ i = document.querySelector(o);
1299
+ }
1278
1300
  e.navigationListener = () => {
1279
- let r = document.querySelector("solid-router");
1280
- for (; r; )
1281
- e.noRouter = !1, e.currentRoute = r.currentRouteName, e.currentResource = window.sibRouter.currentResource, r = document.querySelector(
1282
- `[data-view="${r.currentRouteName}"] solid-router`
1283
- );
1301
+ let o = document.querySelector("solid-router");
1302
+ const n = window.sibRouter.currentResource;
1303
+ for (; o; ) {
1304
+ e.noRouter = !1, e.currentRoute = o.currentRouteName, e.currentResource = n;
1305
+ const a = `[data-view="${o.currentRouteName}"] solid-router`;
1306
+ o = document.querySelector(a);
1307
+ }
1284
1308
  e.requestUpdate();
1285
1309
  }, e._subscriptions.add(["navigate", e.navigationListener]);
1286
1310
  }
@@ -1293,195 +1317,219 @@ const re = ({
1293
1317
  document.removeEventListener(i[0], i[1]);
1294
1318
  }, e._subscribe();
1295
1319
  };
1296
- function zt(e) {
1320
+ function Wt(e) {
1297
1321
  return !Number.isNaN(new Date(e).getTime());
1298
1322
  }
1299
- const vt = (e, t, s) => {
1323
+ const bt = (e, t, r) => {
1300
1324
  if (e == null)
1301
1325
  return !1;
1302
1326
  const i = t.split(".");
1303
- let r = e;
1327
+ let s = e;
1304
1328
  for (const o of i)
1305
- if (r && typeof r == "object" && o in r)
1306
- r = r[o];
1329
+ if (s && typeof s == "object" && o in s)
1330
+ s = s[o];
1307
1331
  else
1308
1332
  return !1;
1309
- if (zt(r)) {
1310
- if (new Date(r) > s)
1333
+ if (Wt(s)) {
1334
+ if (new Date(s) > r)
1311
1335
  return !0;
1312
1336
  } else
1313
1337
  return !1;
1314
1338
  return Array.isArray(e) ? e.some(
1315
- (o) => vt(o, t, s)
1316
- ) : typeof e == "object" ? Object.entries(e).some(([o, n]) => o === t && zt(n) ? !1 : vt(n, t, s)) : !1;
1317
- }, Ge = (e, t, s) => {
1318
- if (!t || !s || typeof s != "string")
1339
+ (o) => bt(o, t, r)
1340
+ ) : typeof e == "object" ? Object.entries(e).some(([o, n]) => o === t && Wt(n) ? !1 : bt(n, t, r)) : !1;
1341
+ }, Ze = (e, t, r) => {
1342
+ if (!t || !r || typeof r != "string")
1319
1343
  return e;
1320
- const i = new Date(s);
1321
- return Number.isNaN(i.getTime()) ? (console.warn(`Invalid threshold date provided: ${s}`), e) : e.filter(
1322
- (r) => vt(r, t, i)
1344
+ const i = new Date(r);
1345
+ return Number.isNaN(i.getTime()) ? (console.warn(`Invalid threshold date provided: ${r}`), e) : e.filter(
1346
+ (s) => bt(s, t, i)
1323
1347
  );
1324
- }, Je = (e, t, s) => !t || !s ? e : e.filter((i) => {
1325
- let r = i;
1326
- const o = t.split(".");
1327
- for (const a of o)
1328
- if (r && typeof r == "object" && a in r)
1329
- r = r[a];
1330
- else
1331
- return !1;
1332
- const n = r;
1333
- return n ? typeof n == "object" && !Array.isArray(n) && n !== null && "@id" in n && n["@id"] === s ? !0 : Array.isArray(n) ? n.some(
1334
- (a) => typeof a == "object" && a !== null && "@id" in a && a["@id"] === s
1335
- ) : !1 : !1;
1336
- });
1337
- function Ze(e) {
1348
+ };
1349
+ function Xe(e) {
1338
1350
  return typeof e != "string" && typeof e != "number" && !(e instanceof Date) ? !1 : !Number.isNaN(new Date(e).getTime());
1339
1351
  }
1340
- const bt = (e, t, s, i) => {
1352
+ const $t = (e, t, r, i) => {
1341
1353
  if (e == null)
1342
1354
  return !1;
1343
- const r = t.split(".");
1355
+ const s = t.split(".");
1344
1356
  let o = e;
1345
- for (const n of r)
1357
+ for (const n of s)
1346
1358
  if (o && typeof o == "object" && n in o)
1347
1359
  o = o[n];
1348
1360
  else
1349
1361
  return !1;
1350
1362
  if (typeof o == "number") {
1351
- if (typeof s == "number" && typeof i == "number" && s <= o && o <= i)
1363
+ if (typeof r == "number" && typeof i == "number" && r <= o && o <= i)
1352
1364
  return !0;
1353
- } else if (Ze(o)) {
1365
+ } else if (Xe(o)) {
1354
1366
  const n = new Date(o);
1355
- if (s instanceof Date && i instanceof Date && s <= n && n <= i)
1367
+ if (r instanceof Date && i instanceof Date && r <= n && n <= i)
1356
1368
  return !0;
1357
1369
  } else
1358
1370
  return !1;
1359
1371
  return Array.isArray(e) ? e.some(
1360
- (n) => bt(n, t, s, i)
1372
+ (n) => $t(n, t, r, i)
1361
1373
  ) : typeof e == "object" ? Object.entries(e).some(
1362
- ([n, a]) => bt(a, t, s, i)
1374
+ ([n, a]) => $t(a, t, r, i)
1363
1375
  ) : !1;
1364
- }, Xe = (e, t, s) => {
1365
- if (!t || !s || typeof s != "string")
1376
+ }, Qe = (e, t, r) => {
1377
+ if (!t || !r)
1378
+ return e;
1379
+ const i = t.split(".");
1380
+ return e.filter((s) => {
1381
+ let o = s;
1382
+ for (const a of i)
1383
+ if (o && typeof o == "object" && a in o)
1384
+ o = o[a];
1385
+ else
1386
+ return !1;
1387
+ const n = o;
1388
+ return n ? typeof n == "object" && !Array.isArray(n) && n !== null && "@id" in n && n["@id"] === r ? !0 : Array.isArray(n) ? n.some(
1389
+ (a) => typeof a == "object" && a !== null && "@id" in a && a["@id"] === r
1390
+ ) : !1 : !1;
1391
+ });
1392
+ }, Ye = (e, t, r) => {
1393
+ if (!t || !r || typeof r != "string")
1366
1394
  return e;
1367
- const [i, r] = s.split("/").map(Number);
1368
- return Number.isNaN(i) || Number.isNaN(r) ? e : i > r ? (console.warn(`Start number is after end number in interval: ${s}`), e) : e.filter(
1369
- (o) => bt(o, t, i, r)
1395
+ const [i, s] = r.split("/").map(Number);
1396
+ return Number.isNaN(i) || Number.isNaN(s) ? e : i > s ? (console.warn(`Start number is after end number in interval: ${r}`), e) : e.filter(
1397
+ (o) => $t(o, t, i, s)
1370
1398
  );
1371
- }, $t = (e, t, s) => {
1399
+ }, _t = (e, t, r) => {
1372
1400
  if (e == null)
1373
1401
  return 0;
1374
1402
  if (typeof e != "object") {
1375
- const r = String(e).toLowerCase(), o = t.replace(
1403
+ const s = String(e).toLowerCase(), o = t.replace(
1376
1404
  /[.*+?^${}()|[\]\\]/g,
1377
1405
  "\\$&"
1378
1406
  ), n = new RegExp(`\\b${o}\\b`);
1379
1407
  let a = 0;
1380
- return n.test(r) ? a = 2 : r.includes(t) && (a = 1), a;
1408
+ return n.test(s) ? a = 2 : s.includes(t) && (a = 1), a;
1381
1409
  }
1382
1410
  if (Array.isArray(e)) {
1383
- let r = 0;
1411
+ let s = 0;
1384
1412
  for (const o of e)
1385
- if (r = Math.max(
1386
- r,
1387
- $t(
1413
+ if (s = Math.max(
1414
+ s,
1415
+ _t(
1388
1416
  o,
1389
1417
  t
1390
1418
  )
1391
- ), r === 2) break;
1392
- return r;
1419
+ ), s === 2) break;
1420
+ return s;
1393
1421
  }
1394
1422
  let i = 0;
1395
- for (const r of Object.values(e))
1423
+ for (const s of Object.values(e))
1396
1424
  if (i = Math.max(
1397
1425
  i,
1398
- $t(
1399
- r,
1426
+ _t(
1427
+ s,
1400
1428
  t
1401
1429
  )
1402
1430
  ), i === 2) break;
1403
1431
  return i;
1404
- }, Qe = (e, t, s) => {
1405
- if (!t || !s || s.trim() === "")
1432
+ }, tr = (e, t, r) => {
1433
+ if (!t || !r || r.trim() === "")
1406
1434
  return e;
1407
- const i = s.toLowerCase(), o = e.map((n) => {
1408
- let a = n;
1409
- const c = t.split(".");
1410
- for (const m of c)
1411
- if (a && typeof a == "object" && m in a)
1412
- a = a[m];
1435
+ const i = r.toLowerCase(), s = t.split(".");
1436
+ return e.map((o) => {
1437
+ let n = o;
1438
+ for (const c of s)
1439
+ if (n && typeof n == "object" && c in n)
1440
+ n = n[c];
1413
1441
  else {
1414
- a = null;
1442
+ n = null;
1415
1443
  break;
1416
1444
  }
1417
- let h = 0;
1418
- return a && (h = $t(a, i)), { obj: n, score: h };
1419
- }).filter((n) => n.score > 0);
1420
- return o.sort((n, a) => a.score - n.score), o.map((n) => n.obj);
1421
- }, Ye = (e, t) => t ? e.filter((s) => {
1422
- const i = s["@type"];
1423
- return i ? typeof i == "string" ? i === t : Array.isArray(i) ? i.some((r) => r === t) : !1 : !1;
1424
- }) : e, _t = (e, t, s) => {
1445
+ let a = 0;
1446
+ return n && (a = _t(
1447
+ n,
1448
+ i
1449
+ )), { obj: o, score: a };
1450
+ }).filter((o) => o.score > 0).sort((o, n) => n.score - o.score).map((o) => o.obj);
1451
+ }, er = (e, t) => t ? e.filter((r) => {
1452
+ const i = r["@type"];
1453
+ return i ? typeof i == "string" ? i === t : Array.isArray(i) ? i.some((s) => s === t) : !1 : !1;
1454
+ }) : e, wt = (e, t, r) => {
1425
1455
  if (e == null)
1426
1456
  return 0;
1427
1457
  if (typeof e != "object") {
1428
- const r = String(e).toLowerCase(), o = t.replace(
1458
+ const s = String(e).toLowerCase(), o = t.replace(
1429
1459
  /[.*+?^${}()|[\]\\]/g,
1430
1460
  "\\$&"
1431
1461
  ), n = new RegExp(`\\b${o}\\b`);
1432
1462
  let a = 0;
1433
- return n.test(r) ? s === "name" || s === "title" ? a = 4 : a = 3 : r.includes(t) && (s === "name" || s === "title" ? a = 2 : a = 1), a;
1463
+ return n.test(s) ? r === "name" || r === "title" ? a = 4 : a = 3 : s.includes(t) && (r === "name" || r === "title" ? a = 2 : a = 1), a;
1434
1464
  }
1435
1465
  if (Array.isArray(e)) {
1436
- let r = 0;
1466
+ let s = 0;
1437
1467
  for (const o of e)
1438
- if (r = Math.max(
1439
- r,
1440
- _t(o, t)
1441
- ), r === 4) break;
1442
- return r;
1468
+ if (s = Math.max(
1469
+ s,
1470
+ wt(o, t)
1471
+ ), s === 4) break;
1472
+ return s;
1443
1473
  }
1444
1474
  let i = 0;
1445
- for (const [r, o] of Object.entries(e))
1475
+ for (const [s, o] of Object.entries(e))
1446
1476
  if (i = Math.max(
1447
1477
  i,
1448
- _t(o, t, r)
1478
+ wt(o, t, s)
1449
1479
  ), i === 4) break;
1450
1480
  return i;
1451
- }, ie = (e, t) => {
1481
+ }, ae = (e, t) => {
1452
1482
  if (!t || t.trim() === "")
1453
1483
  return e;
1454
- const s = t.toLowerCase(), r = e.map((o) => ({
1455
- obj: o,
1456
- score: _t(o, s)
1457
- })).filter((o) => o.score > 0);
1458
- return r.sort((o, n) => n.score - o.score), r.map((o) => o.obj);
1459
- }, Vt = (e, t) => {
1460
- let s = e;
1461
- for (let i = 0; i < t.length && (s && t[i] in s); i++)
1462
- s = s[t[i]];
1463
- return s;
1464
- }, j = (e, t, s = "asc") => e.sort((i, r) => {
1465
- let o = i, n = r;
1466
- Array.isArray(t) ? (o = Vt(i, t), n = Vt(r, t)) : (o = i[t], n = r[t]);
1467
- let a = 0;
1468
- if (typeof o == "number" && typeof n == "number")
1469
- a = o - n;
1470
- else if (typeof o == "string" && typeof n == "string")
1471
- a = o.localeCompare(n);
1472
- else if (o instanceof Date && n instanceof Date)
1473
- a = o.getTime() - n.getTime();
1474
- else
1484
+ const r = t.toLowerCase();
1485
+ return e.map((i) => ({
1486
+ obj: i,
1487
+ score: wt(i, r)
1488
+ })).filter((i) => i.score > 0).sort((i, s) => s.score - i.score).map((i) => i.obj);
1489
+ }, D = (e, t) => {
1490
+ let r = e;
1491
+ for (const i of t)
1492
+ if (r && i in r)
1493
+ r = r[i];
1494
+ else
1495
+ return;
1496
+ return r;
1497
+ }, S = (e, t, r = "asc") => {
1498
+ const i = Array.isArray(t) ? t : [t], s = r !== "asc", o = [...e], a = (() => {
1499
+ const c = D(o[0], i);
1500
+ if (typeof c == "number")
1501
+ return (d, p) => {
1502
+ const u = D(d, i), g = D(p, i);
1503
+ return u == null ? g == null ? 0 : 1 : g == null ? -1 : u - g;
1504
+ };
1505
+ if (typeof c == "string")
1506
+ return (d, p) => {
1507
+ const u = D(d, i), g = D(p, i);
1508
+ return u == null ? g == null ? 0 : 1 : g == null ? -1 : u.localeCompare(g);
1509
+ };
1510
+ if (c instanceof Date)
1511
+ return (d, p) => {
1512
+ const u = D(d, i), g = D(p, i);
1513
+ return u == null ? g == null ? 0 : 1 : g == null ? -1 : u.getTime() - g.getTime();
1514
+ };
1475
1515
  throw new TypeError(`Unsupported data type for key "${t}"`);
1476
- return s === "asc" ? a : -a;
1477
- }), T = (e, t = {
1516
+ })();
1517
+ return o.sort((c, d) => {
1518
+ const p = a(c, d);
1519
+ return s ? -p : p;
1520
+ }), o;
1521
+ }, Kt = /* @__PURE__ */ new Map(), rr = (e) => {
1522
+ const t = JSON.stringify(e);
1523
+ let r = Kt.get(t);
1524
+ return r || (r = new Intl.DateTimeFormat(void 0, e), Kt.set(t, r)), r;
1525
+ }, I = (e, t = {
1478
1526
  day: "2-digit",
1479
1527
  month: "2-digit",
1480
1528
  year: "2-digit"
1481
1529
  }) => {
1482
1530
  if (!e) return "";
1483
- const i = (typeof e == "string" ? new Date(e) : e).toLocaleString(void 0, t);
1484
- return typeof e == "string" && i === "Invalid Date" ? e : i;
1531
+ const r = typeof e == "string" ? new Date(e) : e, s = rr(t).format(r);
1532
+ return typeof e == "string" && s === "Invalid Date" ? e : s;
1485
1533
  }, L = (e, t = !1) => {
1486
1534
  window.dispatchEvent(
1487
1535
  new CustomEvent("requestNavigation", {
@@ -1491,49 +1539,49 @@ const bt = (e, t, s, i) => {
1491
1539
  }
1492
1540
  })
1493
1541
  );
1494
- }, ts = "https://cdn.startinblox.com/owl/ds4go.jsonld#", es = { "@id": "ds4go:link", "@type": "@id" }, ss = { "@id": "ds4go:enclosure", "@type": "@id" }, rs = { "@id": "ds4go:url", "@type": "@id" }, Wt = {
1495
- ds4go: ts,
1496
- link: es,
1497
- enclosure: ss,
1498
- url: rs
1542
+ }, sr = "https://cdn.startinblox.com/owl/ds4go.jsonld#", ir = { "@id": "ds4go:link", "@type": "@id" }, or = { "@id": "ds4go:enclosure", "@type": "@id" }, nr = { "@id": "ds4go:url", "@type": "@id" }, Gt = {
1543
+ ds4go: sr,
1544
+ link: ir,
1545
+ enclosure: or,
1546
+ url: nr
1499
1547
  };
1500
- const wt = "lit-localize-status";
1501
- const is = (e, ...t) => ({
1548
+ const At = "lit-localize-status";
1549
+ const ar = (e, ...t) => ({
1502
1550
  strTag: !0,
1503
1551
  strings: e,
1504
1552
  values: t
1505
- }), P = is, os = (e) => typeof e != "string" && "strTag" in e, oe = (e, t, s) => {
1553
+ }), E = ar, cr = (e) => typeof e != "string" && "strTag" in e, ce = (e, t, r) => {
1506
1554
  let i = e[0];
1507
- for (let r = 1; r < e.length; r++)
1508
- i += t[s ? s[r - 1] : r - 1], i += e[r];
1555
+ for (let s = 1; s < e.length; s++)
1556
+ i += t[r ? r[s - 1] : s - 1], i += e[s];
1509
1557
  return i;
1510
1558
  };
1511
- const ne = ((e) => os(e) ? oe(e.strings, e.values) : e);
1512
- let d = ne, Kt = !1;
1513
- function ns(e) {
1514
- if (Kt)
1559
+ const le = ((e) => cr(e) ? ce(e.strings, e.values) : e);
1560
+ let h = le, Jt = !1;
1561
+ function lr(e) {
1562
+ if (Jt)
1515
1563
  throw new Error("lit-localize can only be configured once");
1516
- d = e, Kt = !0;
1564
+ h = e, Jt = !0;
1517
1565
  }
1518
- class as {
1566
+ class dr {
1519
1567
  constructor(t) {
1520
- this.__litLocalizeEventHandler = (s) => {
1521
- s.detail.status === "ready" && this.host.requestUpdate();
1568
+ this.__litLocalizeEventHandler = (r) => {
1569
+ r.detail.status === "ready" && this.host.requestUpdate();
1522
1570
  }, this.host = t;
1523
1571
  }
1524
1572
  hostConnected() {
1525
- window.addEventListener(wt, this.__litLocalizeEventHandler);
1573
+ window.addEventListener(At, this.__litLocalizeEventHandler);
1526
1574
  }
1527
1575
  hostDisconnected() {
1528
- window.removeEventListener(wt, this.__litLocalizeEventHandler);
1576
+ window.removeEventListener(At, this.__litLocalizeEventHandler);
1529
1577
  }
1530
1578
  }
1531
- const cs = (e) => e.addController(new as(e)), ls = cs;
1532
- const ds = () => (e, t) => (e.addInitializer(ls), e);
1533
- class ae {
1579
+ const ur = (e) => e.addController(new dr(e)), hr = ur;
1580
+ const pr = () => (e, t) => (e.addInitializer(hr), e);
1581
+ class de {
1534
1582
  constructor() {
1535
- this.settled = !1, this.promise = new Promise((t, s) => {
1536
- this._resolve = t, this._reject = s;
1583
+ this.settled = !1, this.promise = new Promise((t, r) => {
1584
+ this._resolve = t, this._reject = r;
1537
1585
  });
1538
1586
  }
1539
1587
  resolve(t) {
@@ -1546,104 +1594,104 @@ class ae {
1546
1594
  const C = [];
1547
1595
  for (let e = 0; e < 256; e++)
1548
1596
  C[e] = (e >> 4 & 15).toString(16) + (e & 15).toString(16);
1549
- function us(e) {
1550
- let t = 0, s = 8997, i = 0, r = 33826, o = 0, n = 40164, a = 0, c = 52210;
1551
- for (let h = 0; h < e.length; h++)
1552
- s ^= e.charCodeAt(h), t = s * 435, i = r * 435, o = n * 435, a = c * 435, o += s << 8, a += r << 8, i += t >>> 16, s = t & 65535, o += i >>> 16, r = i & 65535, c = a + (o >>> 16) & 65535, n = o & 65535;
1553
- return C[c >> 8] + C[c & 255] + C[n >> 8] + C[n & 255] + C[r >> 8] + C[r & 255] + C[s >> 8] + C[s & 255];
1597
+ function fr(e) {
1598
+ let t = 0, r = 8997, i = 0, s = 33826, o = 0, n = 40164, a = 0, c = 52210;
1599
+ for (let d = 0; d < e.length; d++)
1600
+ r ^= e.charCodeAt(d), t = r * 435, i = s * 435, o = n * 435, a = c * 435, o += r << 8, a += s << 8, i += t >>> 16, r = t & 65535, o += i >>> 16, s = i & 65535, c = a + (o >>> 16) & 65535, n = o & 65535;
1601
+ return C[c >> 8] + C[c & 255] + C[n >> 8] + C[n & 255] + C[s >> 8] + C[s & 255] + C[r >> 8] + C[r & 255];
1554
1602
  }
1555
- const hs = "", ps = "h", fs = "s";
1556
- function ms(e, t) {
1557
- return (t ? ps : fs) + us(typeof e == "string" ? e : e.join(hs));
1603
+ const mr = "", gr = "h", yr = "s";
1604
+ function vr(e, t) {
1605
+ return (t ? gr : yr) + fr(typeof e == "string" ? e : e.join(mr));
1558
1606
  }
1559
- const Gt = /* @__PURE__ */ new WeakMap(), Jt = /* @__PURE__ */ new Map();
1560
- function gs(e, t, s) {
1607
+ const Zt = /* @__PURE__ */ new WeakMap(), Xt = /* @__PURE__ */ new Map();
1608
+ function br(e, t, r) {
1561
1609
  if (e) {
1562
- const i = s?.id ?? ys(t), r = e[i];
1563
- if (r) {
1564
- if (typeof r == "string")
1565
- return r;
1566
- if ("strTag" in r)
1567
- return oe(
1568
- r.strings,
1610
+ const i = r?.id ?? $r(t), s = e[i];
1611
+ if (s) {
1612
+ if (typeof s == "string")
1613
+ return s;
1614
+ if ("strTag" in s)
1615
+ return ce(
1616
+ s.strings,
1569
1617
  // Cast `template` because its type wasn't automatically narrowed (but
1570
1618
  // we know it must be the same type as `localized`).
1571
1619
  t.values,
1572
- r.values
1620
+ s.values
1573
1621
  );
1574
1622
  {
1575
- let o = Gt.get(r);
1576
- return o === void 0 && (o = r.values, Gt.set(r, o)), {
1577
- ...r,
1623
+ let o = Zt.get(s);
1624
+ return o === void 0 && (o = s.values, Zt.set(s, o)), {
1625
+ ...s,
1578
1626
  values: o.map((n) => t.values[n])
1579
1627
  };
1580
1628
  }
1581
1629
  }
1582
1630
  }
1583
- return ne(t);
1631
+ return le(t);
1584
1632
  }
1585
- function ys(e) {
1633
+ function $r(e) {
1586
1634
  const t = typeof e == "string" ? e : e.strings;
1587
- let s = Jt.get(t);
1588
- return s === void 0 && (s = ms(t, typeof e != "string" && !("strTag" in e)), Jt.set(t, s)), s;
1635
+ let r = Xt.get(t);
1636
+ return r === void 0 && (r = vr(t, typeof e != "string" && !("strTag" in e)), Xt.set(t, r)), r;
1589
1637
  }
1590
- function gt(e) {
1591
- window.dispatchEvent(new CustomEvent(wt, { detail: e }));
1638
+ function yt(e) {
1639
+ window.dispatchEvent(new CustomEvent(At, { detail: e }));
1592
1640
  }
1593
- let nt = "", yt, ce, at, At, le, D = new ae();
1594
- D.resolve();
1595
- let st = 0;
1596
- const vs = (e) => (ns(((t, s) => gs(le, t, s))), nt = ce = e.sourceLocale, at = new Set(e.targetLocales), at.add(e.sourceLocale), At = e.loadLocale, { getLocale: bs, setLocale: $s }), bs = () => nt, $s = (e) => {
1597
- if (e === (yt ?? nt))
1598
- return D.promise;
1599
- if (!at || !At)
1641
+ let lt = "", vt, ue, dt, Ct, he, O = new de();
1642
+ O.resolve();
1643
+ let ot = 0;
1644
+ const _r = (e) => (lr(((t, r) => br(he, t, r))), lt = ue = e.sourceLocale, dt = new Set(e.targetLocales), dt.add(e.sourceLocale), Ct = e.loadLocale, { getLocale: wr, setLocale: Ar }), wr = () => lt, Ar = (e) => {
1645
+ if (e === (vt ?? lt))
1646
+ return O.promise;
1647
+ if (!dt || !Ct)
1600
1648
  throw new Error("Internal error");
1601
- if (!at.has(e))
1649
+ if (!dt.has(e))
1602
1650
  throw new Error("Invalid locale code");
1603
- st++;
1604
- const t = st;
1605
- return yt = e, D.settled && (D = new ae()), gt({ status: "loading", loadingLocale: e }), (e === ce ? (
1651
+ ot++;
1652
+ const t = ot;
1653
+ return vt = e, O.settled && (O = new de()), yt({ status: "loading", loadingLocale: e }), (e === ue ? (
1606
1654
  // We could switch to the source locale synchronously, but we prefer to
1607
1655
  // queue it on a microtask so that switching locales is consistently
1608
1656
  // asynchronous.
1609
1657
  Promise.resolve({ templates: void 0 })
1610
- ) : At(e)).then((i) => {
1611
- st === t && (nt = e, yt = void 0, le = i.templates, gt({ status: "ready", readyLocale: e }), D.resolve());
1658
+ ) : Ct(e)).then((i) => {
1659
+ ot === t && (lt = e, vt = void 0, he = i.templates, yt({ status: "ready", readyLocale: e }), O.resolve());
1612
1660
  }, (i) => {
1613
- st === t && (gt({
1661
+ ot === t && (yt({
1614
1662
  status: "error",
1615
1663
  errorLocale: e,
1616
1664
  errorMessage: i.toString()
1617
- }), D.reject(i));
1618
- }), D.promise;
1665
+ }), O.reject(i));
1666
+ }), O.promise;
1619
1667
  };
1620
- var _s = Object.defineProperty, ws = Object.getOwnPropertyDescriptor, Ut = (e, t, s, i) => {
1621
- for (var r = i > 1 ? void 0 : i ? ws(t, s) : t, o = e.length - 1, n; o >= 0; o--)
1622
- (n = e[o]) && (r = (i ? n(t, s, r) : n(r)) || r);
1623
- return i && r && _s(t, s, r), r;
1668
+ var Cr = Object.defineProperty, Sr = Object.getOwnPropertyDescriptor, Dt = (e, t, r, i) => {
1669
+ for (var s = i > 1 ? void 0 : i ? Sr(t, r) : t, o = e.length - 1, n; o >= 0; o--)
1670
+ (n = e[o]) && (s = (i ? n(t, r, s) : n(s)) || s);
1671
+ return i && s && Cr(t, r, s), s;
1624
1672
  };
1625
- let X = class extends Rt {
1673
+ let Q = class extends kt {
1626
1674
  constructor() {
1627
1675
  super(...arguments), this.search = [], this._displayObjects = [];
1628
1676
  }
1629
1677
  filter(e, t = []) {
1630
1678
  if (!t || t.length === 0 || !e || e.length === 0)
1631
1679
  return e;
1632
- const s = /* @__PURE__ */ new Map();
1633
- for (const r of t) {
1634
- const o = r.name, n = s.get(o) || [];
1635
- n.push(r), s.set(o, n);
1680
+ const r = /* @__PURE__ */ new Map();
1681
+ for (const s of t) {
1682
+ const o = s.name, n = r.get(o) || [];
1683
+ n.push(s), r.set(o, n);
1636
1684
  }
1637
1685
  let i = [...e];
1638
- for (const r of s.values()) {
1686
+ for (const s of r.values()) {
1639
1687
  if (i.length === 0)
1640
1688
  break;
1641
1689
  const o = [];
1642
- for (const n of r)
1690
+ for (const n of s)
1643
1691
  switch (n.type) {
1644
1692
  case "interval":
1645
1693
  o.push(
1646
- Xe(
1694
+ Ye(
1647
1695
  i,
1648
1696
  n.name,
1649
1697
  n.value
@@ -1652,7 +1700,7 @@ let X = class extends Rt {
1652
1700
  break;
1653
1701
  case "dateAfter":
1654
1702
  o.push(
1655
- Ge(
1703
+ Ze(
1656
1704
  i,
1657
1705
  n.name,
1658
1706
  n.value
@@ -1661,7 +1709,7 @@ let X = class extends Rt {
1661
1709
  break;
1662
1710
  case "matchId":
1663
1711
  o.push(
1664
- Je(
1712
+ Qe(
1665
1713
  i,
1666
1714
  n.name,
1667
1715
  n.value
@@ -1670,12 +1718,12 @@ let X = class extends Rt {
1670
1718
  break;
1671
1719
  case "matchType":
1672
1720
  o.push(
1673
- Ye(i, n.value)
1721
+ er(i, n.value)
1674
1722
  );
1675
1723
  break;
1676
1724
  case "exact":
1677
1725
  o.push(
1678
- Qe(
1726
+ tr(
1679
1727
  i,
1680
1728
  n.name,
1681
1729
  n.value
@@ -1684,7 +1732,7 @@ let X = class extends Rt {
1684
1732
  break;
1685
1733
  default:
1686
1734
  o.push(
1687
- ie(i, n.value)
1735
+ ae(i, n.value)
1688
1736
  );
1689
1737
  }
1690
1738
  i = [...o.flat()];
@@ -1702,15 +1750,15 @@ let X = class extends Rt {
1702
1750
  ));
1703
1751
  }
1704
1752
  render() {
1705
- return !this._displayObjects || this._displayObjects.length === 0 ? l : u`<div class="card-grid card-grid-vertical">
1753
+ return !this._displayObjects || this._displayObjects.length === 0 ? l : f`<div class="card-grid card-grid-vertical">
1706
1754
  ${this._displayObjects.map((e) => {
1707
1755
  const t = [
1708
1756
  {
1709
- name: `${e.facts.length} ${e.facts.length > 1 ? d("facts") : d("fact")}`,
1757
+ name: `${e.facts.length} ${e.facts.length > 1 ? h("facts") : h("fact")}`,
1710
1758
  type: "information"
1711
1759
  }
1712
1760
  ];
1713
- return u`<tems-card-catalog
1761
+ return f`<tems-card-catalog
1714
1762
  .object=${l}
1715
1763
  type=${"bill-image"}
1716
1764
  .tags=${t}
@@ -1723,7 +1771,7 @@ let X = class extends Rt {
1723
1771
  </div>`;
1724
1772
  }
1725
1773
  };
1726
- X.styles = lt`
1774
+ Q.styles = tt`
1727
1775
  .card-grid {
1728
1776
  display: flex;
1729
1777
  flex-direction: row;
@@ -1741,22 +1789,22 @@ X.styles = lt`
1741
1789
  cursor: pointer;
1742
1790
  }
1743
1791
  `;
1744
- Ut([
1745
- f()
1746
- ], X.prototype, "search", 2);
1747
- Ut([
1748
- f()
1749
- ], X.prototype, "_displayObjects", 2);
1750
- X = Ut([
1751
- V("ds4go-fact-bundle-holder")
1752
- ], X);
1753
- const As = ".flex{display:flex}.flex.flex-row{flex-direction:row}.flex.flex-column{flex-direction:column}.flex.wrap{flex-wrap:wrap}.flex.flex-1{flex:1}.flex .half,.flex.half{flex-basis:50%}.flex.justify-content-center{justify-content:center}.flex.justify-content-space-between{justify-content:space-between}.flex.align-items-center{align-items:center}.flex.align-items-flex-start{align-items:flex-start}.flex .align-items-flex-end{align-items:flex-end}.full-width{width:100%}.modal{background-color:var(--color-surface-primary);border:var(--border-width-sm) solid var(--color-border-primary);border-radius:var(--border-radius-lg);color:var(--color-text-body);display:flex;flex-direction:column;font-family:var(--font-family-body);font-size:var(--typography-size-body-md);font-style:normal;font-weight:var(--font-weight-regular);gap:var(--scale-600);height:90vh;letter-spacing:var(--font-letter-spacing-default);line-height:var(--line-height-body-md);padding:var(--scale-600) var(--scale-900);width:90vw}.modal .topbar{display:flex;flex-direction:row;gap:var(--scale-400);width:100%}.modal .topbar tems-button:nth-child(2){margin-left:auto}.modal .modal-content-wrapper{display:flex;flex:1;flex-direction:column;overflow:hidden}.modal .modal-content-wrapper .modal-box{display:flex;flex:1;overflow-x:hidden;overflow-y:scroll}.modal .modal-content-wrapper .modal-content{display:flex;flex-direction:column;gap:var(--scale-400);height:fit-content;width:100%}.modal .modal-content-wrapper tems-division{width:fit-content}.modal .modal-content-wrapper tems-division div{display:block;height:auto;overflow:hidden;text-overflow:ellipsis}.modal .modal-content-wrapper .card-grid{display:flex;flex-direction:row;flex-wrap:wrap;gap:20px}.modal .modal-content-wrapper .card-grid-vertical{justify-content:stretch}.modal .modal-content-wrapper .card-grid-vertical tems-card-catalog{height:auto;width:354px}@media screen and (min-width:1100px){div.modal{height:fit-content;max-height:80vw;max-width:80vw;width:fit-content}}";
1754
- var Cs = Object.defineProperty, Ss = Object.getOwnPropertyDescriptor, de = (e, t, s, i) => {
1755
- for (var r = i > 1 ? void 0 : i ? Ss(t, s) : t, o = e.length - 1, n; o >= 0; o--)
1756
- (n = e[o]) && (r = (i ? n(t, s, r) : n(r)) || r);
1757
- return i && r && Cs(t, s, r), r;
1792
+ Dt([
1793
+ m()
1794
+ ], Q.prototype, "search", 2);
1795
+ Dt([
1796
+ m()
1797
+ ], Q.prototype, "_displayObjects", 2);
1798
+ Q = Dt([
1799
+ M("ds4go-fact-bundle-holder")
1800
+ ], Q);
1801
+ const xr = ".flex{display:flex}.flex.flex-row{flex-direction:row}.flex.flex-column{flex-direction:column}.flex.wrap{flex-wrap:wrap}.flex.flex-1{flex:1}.flex .half,.flex.half{flex-basis:50%}.flex.justify-content-center{justify-content:center}.flex.justify-content-space-between{justify-content:space-between}.flex.align-items-center{align-items:center}.flex.align-items-flex-start{align-items:flex-start}.flex .align-items-flex-end{align-items:flex-end}.full-width{width:100%}.modal{background-color:var(--color-surface-primary);border:var(--border-width-sm) solid var(--color-border-primary);border-radius:var(--border-radius-lg);color:var(--color-text-body);display:flex;flex-direction:column;font-family:var(--font-family-body);font-size:var(--typography-size-body-md);font-style:normal;font-weight:var(--font-weight-regular);gap:var(--scale-600);height:90vh;letter-spacing:var(--font-letter-spacing-default);line-height:var(--line-height-body-md);padding:var(--scale-600) var(--scale-900);width:90vw}.modal .topbar{display:flex;flex-direction:row;gap:var(--scale-400);width:100%}.modal .topbar tems-button:nth-child(2){margin-left:auto}.modal .modal-content-wrapper{display:flex;flex:1;flex-direction:column;overflow:hidden}.modal .modal-content-wrapper .modal-box{display:flex;flex:1;overflow-x:hidden;overflow-y:scroll}.modal .modal-content-wrapper .modal-content{display:flex;flex-direction:column;gap:var(--scale-400);height:fit-content;width:100%}.modal .modal-content-wrapper tems-division{width:fit-content}.modal .modal-content-wrapper tems-division div{display:block;height:auto;overflow:hidden;text-overflow:ellipsis}.modal .modal-content-wrapper .card-grid{display:flex;flex-direction:row;flex-wrap:wrap;gap:20px}.modal .modal-content-wrapper .card-grid-vertical{justify-content:stretch}.modal .modal-content-wrapper .card-grid-vertical tems-card-catalog{height:auto;width:354px}@media screen and (min-width:1100px){div.modal{height:fit-content;max-height:80vw;max-width:80vw;width:fit-content}}";
1802
+ var Pr = Object.defineProperty, Rr = Object.getOwnPropertyDescriptor, pe = (e, t, r, i) => {
1803
+ for (var s = i > 1 ? void 0 : i ? Rr(t, r) : t, o = e.length - 1, n; o >= 0; o--)
1804
+ (n = e[o]) && (s = (i ? n(t, r, s) : n(s)) || s);
1805
+ return i && s && Pr(t, r, s), s;
1758
1806
  };
1759
- let ct = class extends ke {
1807
+ let ut = class extends Fe {
1760
1808
  constructor() {
1761
1809
  super(...arguments), this.object = { "@id": "" };
1762
1810
  }
@@ -1764,12 +1812,12 @@ let ct = class extends ke {
1764
1812
  this.dispatchEvent(new CustomEvent("close"));
1765
1813
  }
1766
1814
  render() {
1767
- return u`<div class="modal">
1815
+ return f`<div class="modal">
1768
1816
  <div class="topbar">
1769
1817
  <tems-button
1770
1818
  @click=${this._closeModal}
1771
1819
  type="outline-gray"
1772
- .iconLeft=${u`<icon-material-symbols-close-rounded></icon-material-symbols-close-rounded>`}
1820
+ .iconLeft=${f`<icon-material-symbols-close-rounded></icon-material-symbols-close-rounded>`}
1773
1821
  ></tems-button>
1774
1822
  </div>
1775
1823
  <div class="modal-content-wrapper">
@@ -1782,22 +1830,22 @@ let ct = class extends ke {
1782
1830
  ><div>${String(this.object.description || "")}</div></tems-division
1783
1831
  >
1784
1832
  <tems-division type="h4"
1785
- ><div>${d("All facts in this bundle")}</div></tems-division
1833
+ ><div>${h("All facts in this bundle")}</div></tems-division
1786
1834
  >
1787
1835
  <div class="card-grid card-grid-vertical">
1788
1836
  ${this.object.facts.map((e) => {
1789
- const t = e.categories.map((s) => ({
1790
- name: s.name,
1837
+ const t = e.categories.map((r) => ({
1838
+ name: r.name,
1791
1839
  type: "information"
1792
1840
  }));
1793
1841
  if (t.length > 3) {
1794
- const s = t.length - 3;
1795
- t.splice(3, s), t.push({
1796
- name: `+${s} ${d("more")}`,
1842
+ const r = t.length - 3;
1843
+ t.splice(3, r), t.push({
1844
+ name: `+${r} ${h("more")}`,
1797
1845
  type: "information"
1798
1846
  });
1799
1847
  }
1800
- return u`<tems-card-catalog
1848
+ return f`<tems-card-catalog
1801
1849
  .object=${l}
1802
1850
  .tags=${t}
1803
1851
  .header=${e.name || l}
@@ -1809,10 +1857,10 @@ let ct = class extends ke {
1809
1857
  <tems-division type="body-sm"
1810
1858
  ><div>
1811
1859
  <div>
1812
- ${d("Bundle created on")} ${String(this.object.created_at)}
1860
+ ${h("Bundle created on")} ${String(this.object.created_at)}
1813
1861
  </div>
1814
1862
  <div>
1815
- ${d("Bundle updated on")} ${String(this.object.updated_at)}
1863
+ ${h("Bundle updated on")} ${String(this.object.updated_at)}
1816
1864
  </div>
1817
1865
  </div></tems-division
1818
1866
  >
@@ -1822,27 +1870,27 @@ let ct = class extends ke {
1822
1870
  </div>`;
1823
1871
  }
1824
1872
  };
1825
- ct.styles = lt`
1826
- ${xt(As)}
1873
+ ut.styles = tt`
1874
+ ${Rt(xr)}
1827
1875
  `;
1828
- de([
1829
- y({ attribute: !1, type: Object })
1830
- ], ct.prototype, "object", 2);
1831
- ct = de([
1832
- V("ds4go-fact-bundle-modal"),
1833
- ds()
1834
- ], ct);
1835
- const xs = /* @__PURE__ */ Symbol();
1836
- class pt {
1876
+ pe([
1877
+ v({ attribute: !1, type: Object })
1878
+ ], ut.prototype, "object", 2);
1879
+ ut = pe([
1880
+ M("ds4go-fact-bundle-modal"),
1881
+ pr()
1882
+ ], ut);
1883
+ const Er = /* @__PURE__ */ Symbol();
1884
+ class rt {
1837
1885
  get taskComplete() {
1838
- return this.t || (this.i === 1 ? this.t = new Promise(((t, s) => {
1839
- this.o = t, this.h = s;
1886
+ return this.t || (this.i === 1 ? this.t = new Promise(((t, r) => {
1887
+ this.o = t, this.h = r;
1840
1888
  })) : this.i === 3 ? this.t = Promise.reject(this.l) : this.t = Promise.resolve(this.u)), this.t;
1841
1889
  }
1842
- constructor(t, s, i) {
1890
+ constructor(t, r, i) {
1843
1891
  this.p = 0, this.i = 0, (this._ = t).addController(this);
1844
- const r = typeof s == "object" ? s : { task: s, args: i };
1845
- this.v = r.task, this.j = r.args, this.m = r.argsEqual ?? Ps, this.k = r.onComplete, this.A = r.onError, this.autoRun = r.autoRun ?? !0, "initialValue" in r && (this.u = r.initialValue, this.i = 2, this.O = this.T?.());
1892
+ const s = typeof r == "object" ? r : { task: r, args: i };
1893
+ this.v = s.task, this.j = s.args, this.m = s.argsEqual ?? jr, this.k = s.onComplete, this.A = s.onError, this.autoRun = s.autoRun ?? !0, "initialValue" in s && (this.u = s.initialValue, this.i = 2, this.O = this.T?.());
1846
1894
  }
1847
1895
  hostUpdate() {
1848
1896
  this.autoRun === !0 && this.S();
@@ -1857,29 +1905,29 @@ class pt {
1857
1905
  return t;
1858
1906
  }
1859
1907
  async S() {
1860
- const t = this.T(), s = this.O;
1861
- this.O = t, t === s || t === void 0 || s !== void 0 && this.m(s, t) || await this.run(t);
1908
+ const t = this.T(), r = this.O;
1909
+ this.O = t, t === r || t === void 0 || r !== void 0 && this.m(r, t) || await this.run(t);
1862
1910
  }
1863
1911
  async run(t) {
1864
- let s, i;
1912
+ let r, i;
1865
1913
  t ??= this.T(), this.O = t, this.i === 1 ? this.q?.abort() : (this.t = void 0, this.o = void 0, this.h = void 0), this.i = 1, this.autoRun === "afterUpdate" ? queueMicrotask((() => this._.requestUpdate())) : this._.requestUpdate();
1866
- const r = ++this.p;
1914
+ const s = ++this.p;
1867
1915
  this.q = new AbortController();
1868
1916
  let o = !1;
1869
1917
  try {
1870
- s = await this.v(t, { signal: this.q.signal });
1918
+ r = await this.v(t, { signal: this.q.signal });
1871
1919
  } catch (n) {
1872
1920
  o = !0, i = n;
1873
1921
  }
1874
- if (this.p === r) {
1875
- if (s === xs) this.i = 0;
1922
+ if (this.p === s) {
1923
+ if (r === Er) this.i = 0;
1876
1924
  else {
1877
1925
  if (o === !1) {
1878
1926
  try {
1879
- this.k?.(s);
1927
+ this.k?.(r);
1880
1928
  } catch {
1881
1929
  }
1882
- this.i = 2, this.o?.(s);
1930
+ this.i = 2, this.o?.(r);
1883
1931
  } else {
1884
1932
  try {
1885
1933
  this.A?.(i);
@@ -1887,7 +1935,7 @@ class pt {
1887
1935
  }
1888
1936
  this.i = 3, this.h?.(i);
1889
1937
  }
1890
- this.u = s, this.l = i;
1938
+ this.u = r, this.l = i;
1891
1939
  }
1892
1940
  this._.requestUpdate();
1893
1941
  }
@@ -1919,21 +1967,73 @@ class pt {
1919
1967
  }
1920
1968
  }
1921
1969
  }
1922
- const Ps = (e, t) => e === t || e.length === t.length && e.every(((s, i) => !ut(s, t[i])));
1923
- var js = Object.defineProperty, Es = Object.getOwnPropertyDescriptor, U = (e, t, s, i) => {
1924
- for (var r = i > 1 ? void 0 : i ? Es(t, s) : t, o = e.length - 1, n; o >= 0; o--)
1925
- (n = e[o]) && (r = (i ? n(t, s, r) : n(r)) || r);
1926
- return i && r && js(t, s, r), r;
1970
+ const jr = (e, t) => e === t || e.length === t.length && e.every(((r, i) => !pt(r, t[i])));
1971
+ !window.orbit && !"/".includes("cypress") && await new Promise((e) => {
1972
+ document.addEventListener("orbit-ready", () => {
1973
+ e(!0);
1974
+ });
1975
+ });
1976
+ var Ur = Object.getOwnPropertyDescriptor, kr = (e, t, r, i) => {
1977
+ for (var s = i > 1 ? void 0 : i ? Ur(t, r) : t, o = e.length - 1, n; o >= 0; o--)
1978
+ (n = e[o]) && (s = n(s) || s);
1979
+ return s;
1980
+ };
1981
+ let St = class extends $ {
1982
+ constructor() {
1983
+ super(...arguments), this.cherryPickedProperties = [{ key: "name", value: "name" }], this._getResource = new rt(this, {
1984
+ task: async ([e]) => {
1985
+ if (!(!e || !this.orbit || !this.noRouter && this.route && this.currentRoute && !this.route.startsWith(this.currentRoute))) {
1986
+ if (!this.hasCachedDatas || this.oldDataSrc !== e) {
1987
+ if (!e) return;
1988
+ this.datas = await this._getProxyValue(e), this.hasCachedDatas = !0;
1989
+ }
1990
+ return this.oldDataSrc !== e && (this.oldDataSrc = e), S(this.datas, "name", "asc");
1991
+ }
1992
+ },
1993
+ args: () => [this.dataSrc, this.caching, this.currentRoute]
1994
+ });
1995
+ }
1996
+ async _afterAttach() {
1997
+ return oe(this, {
1998
+ keywords: ["some-keyword", "for-invalidating", "cache"]
1999
+ }), Promise.resolve();
2000
+ }
2001
+ render() {
2002
+ return this.gatekeeper() || this._getResource.render({
2003
+ pending: () => f`<solid-loader></solid-loader>`,
2004
+ complete: (e) => e ? f`<div>
2005
+ <sample-objects .objects=${e}></sample-objects>
2006
+ </div>` : l
2007
+ });
2008
+ }
1927
2009
  };
1928
- let A = class extends b {
2010
+ St.styles = tt`
2011
+ div {
2012
+ background-color: red;
2013
+ position: absolute;
2014
+ top: 0;
2015
+ left: 0;
2016
+ right: 0;
2017
+ bottom: 0;
2018
+ }
2019
+ `;
2020
+ St = kr([
2021
+ M("solid-boilerplate")
2022
+ ], St);
2023
+ var Dr = Object.defineProperty, Or = Object.getOwnPropertyDescriptor, U = (e, t, r, i) => {
2024
+ for (var s = i > 1 ? void 0 : i ? Or(t, r) : t, o = e.length - 1, n; o >= 0; o--)
2025
+ (n = e[o]) && (s = (i ? n(t, r, s) : n(s)) || s);
2026
+ return i && s && Dr(t, r, s), s;
2027
+ };
2028
+ let A = class extends $ {
1929
2029
  constructor() {
1930
2030
  super(...arguments), this.search = [], this.resultCount = this.objects?.length || 0, this.cherryPickedProperties = [
1931
2031
  { key: "dct:title", value: "title" },
1932
2032
  { key: "dct:description", value: "description" },
1933
2033
  { key: "dcat:dataset", value: "dataset", expand: !0 },
1934
2034
  { key: "dct:creator", value: "creator" }
1935
- ], this.sectors = [], this._getResource = new pt(this, {
1936
- task: async ([e, t, s]) => {
2035
+ ], this.sectors = [], this._getResource = new rt(this, {
2036
+ task: async ([e, t, r]) => {
1937
2037
  if (!(!e || !this.orbit || !this.noRouter && this.route && this.currentRoute && !this.route.startsWith(this.currentRoute))) {
1938
2038
  if (this.displayFiltering = !this.component.parameters.disableFiltering, !this.hasCachedDatas) {
1939
2039
  if (!e) return;
@@ -1948,25 +2048,25 @@ let A = class extends b {
1948
2048
  }
1949
2049
  if (t) {
1950
2050
  this.catalogs = [];
1951
- const i = t === "*" ? this.sectors : this.sectors.filter((r) => r.id === t);
2051
+ const i = t === "*" ? this.sectors : this.sectors.filter((s) => s.id === t);
1952
2052
  if (i.length > 0 && (this.catalogs = (await Promise.all(
1953
- i.map(async (r) => {
2053
+ i.map(async (s) => {
1954
2054
  try {
1955
2055
  return (await (await fetch(
1956
- `${r.federatedCatalogEndpoint}/discovery`
2056
+ `${s.federatedCatalogEndpoint}/discovery`
1957
2057
  )).json()).catalogs;
1958
2058
  } catch (o) {
1959
2059
  return console.warn(
1960
- `Failed to fetch sector authority ${r.federatedCatalogEndpoint}/discovery`,
2060
+ `Failed to fetch sector authority ${s.federatedCatalogEndpoint}/discovery`,
1961
2061
  o
1962
2062
  ), [];
1963
2063
  }
1964
2064
  })
1965
- )).flat()), s) {
1966
- if (s === "*")
2065
+ )).flat()), r) {
2066
+ if (r === "*")
1967
2067
  return this.object = {
1968
2068
  "@id": "urn:uuid:all-catalogs",
1969
- "dct:title": d("All Catalogs"),
2069
+ "dct:title": h("All Catalogs"),
1970
2070
  "dct:description": "",
1971
2071
  "dcat:dataset": (await Promise.all(
1972
2072
  this.catalogs.map(async (o) => {
@@ -1981,27 +2081,27 @@ let A = class extends b {
1981
2081
  })
1982
2082
  )).flat()
1983
2083
  }, this.object;
1984
- const r = this.catalogs.find(
1985
- (o) => o.catalogId === s
2084
+ const s = this.catalogs.find(
2085
+ (o) => o.catalogId === r
1986
2086
  );
1987
- if (r)
2087
+ if (s)
1988
2088
  try {
1989
- return this.object = await (await fetch(r.endpoints.catalog)).json(), this.object["dcat:dataset"] = j(
2089
+ return this.object = await (await fetch(s.endpoints.catalog)).json(), this.object["dcat:dataset"] = S(
1990
2090
  this.object["dcat:dataset"],
1991
2091
  "dct:title",
1992
2092
  "asc"
1993
2093
  ), this.object;
1994
2094
  } catch (o) {
1995
2095
  console.warn(
1996
- `Failed to fetch catalog from ${r.endpoints.catalog}`,
2096
+ `Failed to fetch catalog from ${s.endpoints.catalog}`,
1997
2097
  o
1998
2098
  );
1999
2099
  return;
2000
2100
  }
2001
2101
  }
2002
- return j(this.catalogs, "catalogId", "asc");
2102
+ return S(this.catalogs, "catalogId", "asc");
2003
2103
  }
2004
- return j(this.sectors, "id", "asc");
2104
+ return S(this.sectors, "id", "asc");
2005
2105
  }
2006
2106
  },
2007
2107
  args: () => [
@@ -2035,70 +2135,70 @@ let A = class extends b {
2035
2135
  }
2036
2136
  render() {
2037
2137
  return this.gatekeeper() || this._getResource.render({
2038
- pending: () => u`<solid-loader></solid-loader>`,
2138
+ pending: () => f`<solid-loader></solid-loader>`,
2039
2139
  error: (e) => (console.warn("[solid-dsif-explorer-poc] Task error:", e), l),
2040
- complete: (e) => u`<tems-viewport>
2140
+ complete: (e) => f`<tems-viewport>
2041
2141
  <tems-header
2042
2142
  slot="header"
2043
- heading=${this.catalogId ? e ? this.catalogId === "*" ? `${d("All Datasets")}` : `${d("Datasets from")}
2044
- ${e["dct:title"]} (From ${this.sectorId})` : `${d(P`Error while loading catalog ${this.catalogId}`)}` : this.sectorId ? this.sectorId === "*" ? `${d("All Sectors")}` : `${d("Catalogs available in")} ${this.sectorId}` : `${d("Root Authority")}`}
2045
- >${(this.sectorId || this.catalogId) && !(this.catalogId === "*" && this.sectorId === "*") && !(this.sectorId === "*" && !this.catalogId) ? u`<div slot="cta">
2143
+ heading=${this.catalogId ? e ? this.catalogId === "*" ? `${h("All Datasets")}` : `${h("Datasets from")}
2144
+ ${e["dct:title"]} (From ${this.sectorId})` : `${h(E`Error while loading catalog ${this.catalogId}`)}` : this.sectorId ? this.sectorId === "*" ? `${h("All Sectors")}` : `${h("Catalogs available in")} ${this.sectorId}` : `${h("Root Authority")}`}
2145
+ >${(this.sectorId || this.catalogId) && !(this.catalogId === "*" && this.sectorId === "*") && !(this.sectorId === "*" && !this.catalogId) ? f`<div slot="cta">
2046
2146
  <tems-button
2047
2147
  type="primary"
2048
- label=${d(
2049
- P`Back to ${this.catalogId ? this.sectorId : "Root Authority"}`
2148
+ label=${h(
2149
+ E`Back to ${this.catalogId ? this.sectorId : "Root Authority"}`
2050
2150
  )}
2051
2151
  @click=${this._back}
2052
2152
  ></tems-button>
2053
2153
  </div>` : l}</tems-header
2054
2154
  >
2055
2155
  <div slot="content">
2056
- ${e ? u`<div>
2057
- ${this.catalogId ? u`<tems-division type="body-m"
2156
+ ${e ? f`<div>
2157
+ ${this.catalogId ? f`<tems-division type="body-m"
2058
2158
  >${e["dct:description"]}</tems-division
2059
2159
  >` : l}
2060
2160
  <div class="card-grid card-grid-vertical">
2061
- ${this.catalogId ? u`${e["dcat:dataset"].map(
2062
- (t) => u`<tems-card-catalog
2161
+ ${this.catalogId ? f`${e["dcat:dataset"].map(
2162
+ (t) => f`<tems-card-catalog
2063
2163
  .object=${l}
2064
2164
  type=${"bill-image"}
2065
2165
  .header=${t["dct:title"] || l}
2066
2166
  .content=${t["dct:description"] || l}
2067
2167
  ></tems-card-catalog>`
2068
- )}` : this.sectorId ? u`${e.map(
2069
- (t) => u`<tems-card-catalog
2168
+ )}` : this.sectorId ? f`${e.map(
2169
+ (t) => f`<tems-card-catalog
2070
2170
  class="cursor-pointer"
2071
2171
  .object=${l}
2072
2172
  type=${"bill-image"}
2073
2173
  .header=${t.catalogId || l}
2074
2174
  .content=${t.description || l}
2075
- date=${T(t.lastUpdated) || l}
2175
+ date=${I(t.lastUpdated) || l}
2076
2176
  @click=${() => this._selectCatalog(t.catalogId)}
2077
2177
  ></tems-card-catalog>`
2078
- )}` : u`${e.map(
2079
- (t) => u`<tems-card-catalog
2178
+ )}` : f`${e.map(
2179
+ (t) => f`<tems-card-catalog
2080
2180
  class="cursor-pointer"
2081
2181
  .object=${l}
2082
2182
  type=${"bill-image"}
2083
2183
  .header=${t.id || l}
2084
2184
  .content=${t.description || l}
2085
- date=${T(t.lastUpdated) || l}
2185
+ date=${I(t.lastUpdated) || l}
2086
2186
  @click=${() => this._selectSector(t.id)}
2087
2187
  ></tems-card-catalog>`
2088
2188
  )}`}
2089
2189
  </div>
2090
- </div>` : u`<p>
2091
- ${d(
2190
+ </div>` : f`<p>
2191
+ ${h(
2092
2192
  "No data available, data source may be temporarily unavailable."
2093
2193
  )}
2094
2194
  </p>
2095
- ${this.sectorId || this.catalogId ? u`<tems-button
2195
+ ${this.sectorId || this.catalogId ? f`<tems-button
2096
2196
  type="primary"
2097
- label=${d("Back")}
2197
+ label=${h("Back")}
2098
2198
  @click=${this._back}
2099
- ></tems-button>` : u`<tems-button
2199
+ ></tems-button>` : f`<tems-button
2100
2200
  type="primary"
2101
- label=${d("Retry")}
2201
+ label=${h("Retry")}
2102
2202
  @click=${this.requestUpdate}
2103
2203
  ></tems-button>`}`}
2104
2204
  </div>
@@ -2106,7 +2206,7 @@ let A = class extends b {
2106
2206
  });
2107
2207
  }
2108
2208
  };
2109
- A.styles = lt`
2209
+ A.styles = tt`
2110
2210
  .card-grid {
2111
2211
  margin: var(--scale-900) 0;
2112
2212
  display: flex;
@@ -2129,37 +2229,37 @@ A.styles = lt`
2129
2229
  }
2130
2230
  `;
2131
2231
  U([
2132
- y({ attribute: "sector-id", type: String })
2232
+ v({ attribute: "sector-id", type: String })
2133
2233
  ], A.prototype, "sectorId", 2);
2134
2234
  U([
2135
- y({ attribute: "catalog-id", type: String })
2235
+ v({ attribute: "catalog-id", type: String })
2136
2236
  ], A.prototype, "catalogId", 2);
2137
2237
  U([
2138
- f()
2238
+ m()
2139
2239
  ], A.prototype, "search", 2);
2140
2240
  U([
2141
- f()
2241
+ m()
2142
2242
  ], A.prototype, "resultCount", 2);
2143
2243
  U([
2144
- f()
2244
+ m()
2145
2245
  ], A.prototype, "sectors", 2);
2146
2246
  U([
2147
- f()
2247
+ m()
2148
2248
  ], A.prototype, "catalogs", 2);
2149
2249
  U([
2150
- f()
2250
+ m()
2151
2251
  ], A.prototype, "object", 2);
2152
2252
  A = U([
2153
- V("solid-dsif-explorer-poc")
2253
+ M("solid-dsif-explorer-poc")
2154
2254
  ], A);
2155
- var Rs = Object.defineProperty, Us = Object.getOwnPropertyDescriptor, ft = (e, t, s, i) => {
2156
- for (var r = i > 1 ? void 0 : i ? Us(t, s) : t, o = e.length - 1, n; o >= 0; o--)
2157
- (n = e[o]) && (r = (i ? n(t, s, r) : n(r)) || r);
2158
- return i && r && Rs(t, s, r), r;
2255
+ var Lr = Object.defineProperty, Tr = Object.getOwnPropertyDescriptor, mt = (e, t, r, i) => {
2256
+ for (var s = i > 1 ? void 0 : i ? Tr(t, r) : t, o = e.length - 1, n; o >= 0; o--)
2257
+ (n = e[o]) && (s = (i ? n(t, r, s) : n(s)) || s);
2258
+ return i && s && Lr(t, r, s), s;
2159
2259
  };
2160
- let Q = class extends S {
2260
+ let Y = class extends P {
2161
2261
  constructor() {
2162
- super(...arguments), this.assets = [], this.policies = [], this.contracts = [], this._getResource = new pt(this, {
2262
+ super(...arguments), this.assets = [], this.policies = [], this.contracts = [], this._getResource = new rt(this, {
2163
2263
  task: async () => {
2164
2264
  if (this.orbit) {
2165
2265
  if (!this.hasCachedDatas) {
@@ -2265,30 +2365,30 @@ let Q = class extends S {
2265
2365
  });
2266
2366
  }
2267
2367
  };
2268
- ft([
2269
- f()
2270
- ], Q.prototype, "assets", 2);
2271
- ft([
2272
- f()
2273
- ], Q.prototype, "policies", 2);
2274
- ft([
2275
- f()
2276
- ], Q.prototype, "contracts", 2);
2277
- Q = ft([
2278
- V("solid-dsp-connector")
2279
- ], Q);
2280
- const Os = ".flex{display:flex}.flex.flex-row{flex-direction:row}.flex.flex-column{flex-direction:column}.flex.wrap{flex-wrap:wrap}.flex.flex-1{flex:1}.flex .half,.flex.half{flex-basis:50%}.flex.justify-content-center{justify-content:center}.flex.justify-content-space-between{justify-content:space-between}.flex.align-items-center{align-items:center}.flex.align-items-flex-start{align-items:flex-start}.flex .align-items-flex-end{align-items:flex-end}.full-width{width:100%}[slot=content]{height:100%}section{height:calc(100% - var(--scale-900)*2);padding:var(--scale-900) 0}section,section>div{gap:var(--scale-400)}section>div{display:flex;flex:1;flex-direction:column;height:100%}section>div:first-child{max-width:400px}.card-grid{align-content:flex-start;display:flex;flex:1;flex-direction:row;flex-wrap:wrap;gap:20px;overflow-y:scroll}.card-grid-vertical{justify-content:stretch}.card-grid-vertical tems-card-catalog{height:fit-content;width:354px}tems-card-catalog{cursor:pointer}tems-card-catalog[selected]{--color-border-primary:var(--color-surface-action-solid)}tems-search-bar{--scale-900:0}.gap-400{gap:var(--scale-400)}div.select{align-items:flex-start;display:flex;flex-direction:column;gap:var(--scale-200);width:100%}select{appearance:none;background-color:var(--color-surface-primary);border:var(--border-width-sm) solid var(--color-border-primary);border-radius:var(--border-radius-md);color:var(--color-text-body);cursor:pointer;font-family:var(--font-family-body);font-size:var(--typography-size-body-sm);font-style:normal;font-weight:var(--font-weight-regular);letter-spacing:var(--font-letter-spacing-default);line-height:var(--line-height-body-sm);padding:var(--scale-100) var(--scale-300);width:100%}select:hover{border:var(--border-width-sm) solid var(--color-border-action)}select option{background-color:var(--color-surface-primary);color:var(--color-text-body);cursor:pointer;font-family:var(--font-family-body);font-size:var(--typography-size-body-sm);font-style:normal;font-weight:var(--font-weight-regular);letter-spacing:var(--font-letter-spacing-default);line-height:var(--line-height-body-sm);padding:var(--scale-100) var(--scale-300)}";
2281
- var Ds = Object.defineProperty, Ls = Object.getOwnPropertyDescriptor, $ = (e, t, s, i) => {
2282
- for (var r = i > 1 ? void 0 : i ? Ls(t, s) : t, o = e.length - 1, n; o >= 0; o--)
2283
- (n = e[o]) && (r = (i ? n(t, s, r) : n(r)) || r);
2284
- return i && r && Ds(t, s, r), r;
2368
+ mt([
2369
+ m()
2370
+ ], Y.prototype, "assets", 2);
2371
+ mt([
2372
+ m()
2373
+ ], Y.prototype, "policies", 2);
2374
+ mt([
2375
+ m()
2376
+ ], Y.prototype, "contracts", 2);
2377
+ Y = mt([
2378
+ M("solid-dsp-connector")
2379
+ ], Y);
2380
+ const Ir = ".flex{display:flex}.flex.flex-row{flex-direction:row}.flex.flex-column{flex-direction:column}.flex.wrap{flex-wrap:wrap}.flex.flex-1{flex:1}.flex .half,.flex.half{flex-basis:50%}.flex.justify-content-center{justify-content:center}.flex.justify-content-space-between{justify-content:space-between}.flex.align-items-center{align-items:center}.flex.align-items-flex-start{align-items:flex-start}.flex .align-items-flex-end{align-items:flex-end}.full-width{width:100%}[slot=content]{height:100%}section{height:calc(100% - var(--scale-900)*2);padding:var(--scale-900) 0}section,section>div{gap:var(--scale-400)}section>div{display:flex;flex:1;flex-direction:column;height:100%}section>div:first-child{max-width:400px}.card-grid{align-content:flex-start;display:flex;flex:1;flex-direction:row;flex-wrap:wrap;gap:20px;overflow-y:scroll}.card-grid-vertical{justify-content:stretch}.card-grid-vertical tems-card-catalog{height:fit-content;width:354px}tems-card-catalog{cursor:pointer}tems-card-catalog[selected]{--color-border-primary:var(--color-surface-action-solid)}tems-search-bar{--scale-900:0}.gap-400{gap:var(--scale-400)}div.select{align-items:flex-start;display:flex;flex-direction:column;gap:var(--scale-200);width:100%}select{appearance:none;background-color:var(--color-surface-primary);border:var(--border-width-sm) solid var(--color-border-primary);border-radius:var(--border-radius-md);color:var(--color-text-body);cursor:pointer;font-family:var(--font-family-body);font-size:var(--typography-size-body-sm);font-style:normal;font-weight:var(--font-weight-regular);letter-spacing:var(--font-letter-spacing-default);line-height:var(--line-height-body-sm);padding:var(--scale-100) var(--scale-300);width:100%}select:hover{border:var(--border-width-sm) solid var(--color-border-action)}select option{background-color:var(--color-surface-primary);color:var(--color-text-body);cursor:pointer;font-family:var(--font-family-body);font-size:var(--typography-size-body-sm);font-style:normal;font-weight:var(--font-weight-regular);letter-spacing:var(--font-letter-spacing-default);line-height:var(--line-height-body-sm);padding:var(--scale-100) var(--scale-300)}";
2381
+ var Fr = Object.defineProperty, Nr = Object.getOwnPropertyDescriptor, _ = (e, t, r, i) => {
2382
+ for (var s = i > 1 ? void 0 : i ? Nr(t, r) : t, o = e.length - 1, n; o >= 0; o--)
2383
+ (n = e[o]) && (s = (i ? n(t, r, s) : n(s)) || s);
2384
+ return i && s && Fr(t, r, s), s;
2285
2385
  };
2286
- let v = class extends b {
2386
+ let b = class extends $ {
2287
2387
  constructor() {
2288
2388
  super(...arguments), this.header = "DS4GO Fact Bundling Creation", this.selectedFacts = [], this.bundleName = "", this.bundleDescription = "", this.bundleLanguage = "en", this.policyTemplates = [
2289
2389
  {
2290
2390
  id: "policy-open-access",
2291
- name: d("Open access"),
2391
+ name: h("Open access"),
2292
2392
  policy: {
2293
2393
  "@type": "Set",
2294
2394
  permission: [
@@ -2301,8 +2401,8 @@ let v = class extends b {
2301
2401
  }
2302
2402
  }
2303
2403
  ], this.bundleAccessPolicy = this.policyTemplates[0].id, this.bundleContractPolicy = this.policyTemplates[0].id, this.filterFactText = "", this.spliceLength = 0, this.cherryPickedProperties = [
2304
- { key: "created_at", value: "created_at", cast: T },
2305
- { key: "updated_at", value: "updated_at", cast: T },
2404
+ { key: "created_at", value: "created_at", cast: I },
2405
+ { key: "updated_at", value: "updated_at", cast: I },
2306
2406
  { key: "name", value: "name" },
2307
2407
  { key: "description", value: "description" },
2308
2408
  { key: "author", value: "author" },
@@ -2310,27 +2410,27 @@ let v = class extends b {
2310
2410
  key: "categories",
2311
2411
  value: "categories",
2312
2412
  expand: !0,
2313
- cast: (t) => j(t, "name")
2413
+ cast: (t) => S(t, "name")
2314
2414
  }
2315
- ], this._getResource = new pt(this, {
2316
- task: async ([t, s, i]) => {
2415
+ ], this._getResource = new rt(this, {
2416
+ task: async ([t, r, i]) => {
2317
2417
  if (!(!t || !this.orbit || !this.noRouter && this.route && this.currentRoute && !this.route.startsWith(this.currentRoute))) {
2318
2418
  if (!this.hasCachedDatas || this.oldDataSrc !== t) {
2319
2419
  if (!t) return;
2320
2420
  this.facts = await this._getProxyValue(t), this.hasCachedDatas = !0;
2321
2421
  }
2322
- return this.oldDataSrc !== t && (this.oldDataSrc = t), Array.isArray(this.facts) || (this.facts = []), s ? j(
2323
- ie(
2422
+ return this.oldDataSrc !== t && (this.oldDataSrc = t), Array.isArray(this.facts) || (this.facts = []), r ? S(
2423
+ ae(
2324
2424
  this.facts.filter(
2325
- (r) => !i.includes(r)
2425
+ (s) => !i.includes(s)
2326
2426
  ),
2327
- s
2427
+ r
2328
2428
  ),
2329
2429
  "name",
2330
2430
  "asc"
2331
- ) : (i.length === 0 && (this.spliceLength = Math.floor((window.innerWidth - 800) / 354) * Math.floor((window.innerHeight - 255) / 500)), j(
2431
+ ) : (i.length === 0 && (this.spliceLength = Math.floor((window.innerWidth - 800) / 354) * Math.floor((window.innerHeight - 255) / 500)), S(
2332
2432
  this.facts.filter(
2333
- (r) => !this.selectedFacts.includes(r)
2433
+ (s) => !this.selectedFacts.includes(s)
2334
2434
  ),
2335
2435
  "name",
2336
2436
  "asc"
@@ -2366,16 +2466,16 @@ let v = class extends b {
2366
2466
  "@type": ["ldp:Container", "ds4go:FactBundle"],
2367
2467
  name: this.bundleName,
2368
2468
  description: this.bundleDescription || "",
2369
- "ldp:contains": this.selectedFacts.map((r) => ({
2370
- "@id": r["@id"]
2469
+ "ldp:contains": this.selectedFacts.map((s) => ({
2470
+ "@id": s["@id"]
2371
2471
  }))
2372
- }, s = await window.sibStore.post(
2472
+ }, r = await window.sibStore.post(
2373
2473
  t,
2374
2474
  this.dataSrc
2375
2475
  );
2376
2476
  if (document.dispatchEvent(
2377
2477
  new CustomEvent("save", {
2378
- detail: { resource: { "@id": s } },
2478
+ detail: { resource: { "@id": r } },
2379
2479
  bubbles: !0
2380
2480
  })
2381
2481
  ), document.dispatchEvent(
@@ -2384,9 +2484,9 @@ let v = class extends b {
2384
2484
  bubbles: !0
2385
2485
  })
2386
2486
  ), this.dspConnector) {
2387
- const r = await window.crypto.subtle.digest("SHA-256", new TextEncoder().encode(s)).then((c) => `sha-256:${Array.from(new Uint8Array(c)).map((h) => h.toString(16).padStart(2, "0")).join("")}`);
2487
+ const s = await window.crypto.subtle.digest("SHA-256", new TextEncoder().encode(r)).then((c) => `sha-256:${Array.from(new Uint8Array(c)).map((d) => d.toString(16).padStart(2, "0")).join("")}`);
2388
2488
  await this.dspConnector.instance?.createAsset({
2389
- "@id": `urn:asset-id:${r}`,
2489
+ "@id": `urn:asset-id:${s}`,
2390
2490
  properties: {
2391
2491
  name: this.bundleName,
2392
2492
  description: this.bundleDescription,
@@ -2396,11 +2496,11 @@ let v = class extends b {
2396
2496
  dataAddress: {
2397
2497
  "@type": "DataAddress",
2398
2498
  type: "HttpData",
2399
- baseUrl: s
2499
+ baseUrl: r
2400
2500
  }
2401
2501
  }), await Promise.all([
2402
2502
  this.dspConnector.instance?.createPolicy({
2403
- "@id": `urn:access-policy-id:${r}`,
2503
+ "@id": `urn:access-policy-id:${s}`,
2404
2504
  "@type": "PolicyDefinition",
2405
2505
  policy: {
2406
2506
  "@context": "http://www.w3.org/ns/odrl.jsonld",
@@ -2410,7 +2510,7 @@ let v = class extends b {
2410
2510
  }
2411
2511
  }),
2412
2512
  this.dspConnector.instance?.createPolicy({
2413
- "@id": `urn:contract-policy-id:${r}`,
2513
+ "@id": `urn:contract-policy-id:${s}`,
2414
2514
  "@type": "PolicyDefinition",
2415
2515
  policy: {
2416
2516
  "@context": "http://www.w3.org/ns/odrl.jsonld",
@@ -2420,16 +2520,16 @@ let v = class extends b {
2420
2520
  }
2421
2521
  }),
2422
2522
  this.dspConnector.instance?.createContract({
2423
- "@id": `urn:contract-id:${r}`,
2523
+ "@id": `urn:contract-id:${s}`,
2424
2524
  "@type": "ContractDefinition",
2425
- accessPolicyId: `urn:access-policy-id:${r}`,
2426
- contractPolicyId: `urn:contract-policy-id:${r}`,
2525
+ accessPolicyId: `urn:access-policy-id:${s}`,
2526
+ contractPolicyId: `urn:contract-policy-id:${s}`,
2427
2527
  assetsSelector: [
2428
2528
  {
2429
2529
  "@type": "Criterion",
2430
2530
  operandLeft: "https://w3id.org/edc/v0.0.1/ns/id",
2431
2531
  operator: "=",
2432
- operandRight: `urn:asset-id:${r}`
2532
+ operandRight: `urn:asset-id:${s}`
2433
2533
  }
2434
2534
  ]
2435
2535
  })
@@ -2475,25 +2575,25 @@ let v = class extends b {
2475
2575
  t.preventDefault(), t.target && (this.bundleContractPolicy = t.target.value);
2476
2576
  }
2477
2577
  _toggleFactSelection(t) {
2478
- this.selectedFacts.includes(t) ? this.selectedFacts = this.selectedFacts.filter((s) => s !== t) : this.selectedFacts = [...this.selectedFacts, t];
2578
+ this.selectedFacts.includes(t) ? this.selectedFacts = this.selectedFacts.filter((r) => r !== t) : this.selectedFacts = [...this.selectedFacts, t];
2479
2579
  }
2480
2580
  _searchFacts(t) {
2481
2581
  this.filterFactText = t.detail;
2482
2582
  }
2483
2583
  render() {
2484
2584
  return this.gatekeeper() || this._getResource.render({
2485
- pending: () => u`<solid-loader></solid-loader>`,
2585
+ pending: () => f`<solid-loader></solid-loader>`,
2486
2586
  error: (t) => (console.warn("[solid-fact-bundle-creation] Task error:", t), l),
2487
2587
  complete: (t) => {
2488
2588
  if (!t) return l;
2489
- const s = t.slice(0, this.spliceLength), i = this.selectedFacts.length, r = !!this.bundleName && i > 0 && !!this.bundleLanguage && !!this.bundleAccessPolicy && !!this.bundleContractPolicy;
2490
- return u`<tems-viewport>
2589
+ const r = t.slice(0, this.spliceLength), i = this.selectedFacts.length, s = !!this.bundleName && i > 0 && !!this.bundleLanguage && !!this.bundleAccessPolicy && !!this.bundleContractPolicy;
2590
+ return f`<tems-viewport>
2491
2591
  <tems-header slot="header" heading=${this.header}>
2492
2592
  <div slot="cta">
2493
2593
  <tems-button
2494
2594
  type="primary"
2495
- disabled=${!r || l}
2496
- label=${d("Create bundle")}
2595
+ disabled=${!s || l}
2596
+ label=${h("Create bundle")}
2497
2597
  @click=${this._createFactBundle}
2498
2598
  ></tems-button>
2499
2599
  </div>
@@ -2504,8 +2604,8 @@ let v = class extends b {
2504
2604
  <div>
2505
2605
  <tems-input
2506
2606
  type="text"
2507
- label=${d("Bundle name")}
2508
- placeholder=${d("Bundle name")}
2607
+ label=${h("Bundle name")}
2608
+ placeholder=${h("Bundle name")}
2509
2609
  required=""
2510
2610
  .value=${this.bundleName}
2511
2611
  @change=${this._updateBundleName}
@@ -2514,8 +2614,8 @@ let v = class extends b {
2514
2614
  <div>
2515
2615
  <tems-textarea
2516
2616
  rows="4"
2517
- label=${d("Bundle description")}
2518
- placeholder=${d("Bundle description")}
2617
+ label=${h("Bundle description")}
2618
+ placeholder=${h("Bundle description")}
2519
2619
  .value=${this.bundleDescription}
2520
2620
  @change=${this._updateBundleDescription}
2521
2621
  ></tems-textarea>
@@ -2523,18 +2623,18 @@ let v = class extends b {
2523
2623
  <div>
2524
2624
  <tems-input
2525
2625
  type="text"
2526
- label=${d("Language")}
2527
- placeholder=${d("Language code (en, de, es, fr...)")}
2528
- hint=${d("Comma-separated, eg.: en,de,es,fr)")}
2626
+ label=${h("Language")}
2627
+ placeholder=${h("Language code (en, de, es, fr...)")}
2628
+ hint=${h("Comma-separated, eg.: en,de,es,fr)")}
2529
2629
  required=""
2530
2630
  .value=${this.bundleLanguage}
2531
2631
  @change=${this._updateBundleLanguage}
2532
2632
  ></tems-input>
2533
2633
  </div>
2534
2634
  <div class="select">
2535
- <tems-label label=${d("Access policy")}></tems-label>
2635
+ <tems-label label=${h("Access policy")}></tems-label>
2536
2636
  <select @change=${this._selectBundleAccessPolicy}>
2537
- ${this.policyTemplates.map((o) => u`<option
2637
+ ${this.policyTemplates.map((o) => f`<option
2538
2638
  value="${o.id}"
2539
2639
  ?selected="${o.id === this.bundleAccessPolicy}"
2540
2640
  >
@@ -2543,9 +2643,9 @@ let v = class extends b {
2543
2643
  </select>
2544
2644
  </div>
2545
2645
  <div class="select">
2546
- <tems-label label=${d("Contract policy")}></tems-label>
2646
+ <tems-label label=${h("Contract policy")}></tems-label>
2547
2647
  <select @change=${this._selectBundleContractPolicy}>
2548
- ${this.policyTemplates.map((o) => u`<option
2648
+ ${this.policyTemplates.map((o) => f`<option
2549
2649
  value="${o.id}"
2550
2650
  ?selected="${o.id === this.bundleContractPolicy}"
2551
2651
  >
@@ -2553,10 +2653,10 @@ let v = class extends b {
2553
2653
  </option>`)}
2554
2654
  </select>
2555
2655
  </div>
2556
- ${i > 0 ? u`<tems-division type="h4">
2656
+ ${i > 0 ? f`<tems-division type="h4">
2557
2657
  <div>
2558
- ${d(
2559
- P`${i} selected fact${i > 1 ? "s" : ""}`
2658
+ ${h(
2659
+ E`${i} selected fact${i > 1 ? "s" : ""}`
2560
2660
  )}
2561
2661
  </div></tems-division
2562
2662
  >
@@ -2569,11 +2669,11 @@ let v = class extends b {
2569
2669
  if (n.length > 3) {
2570
2670
  const a = n.length - 3;
2571
2671
  n.splice(3, a), n.push({
2572
- name: `+${a} ${d("more")}`,
2672
+ name: `+${a} ${h("more")}`,
2573
2673
  type: "information"
2574
2674
  });
2575
2675
  }
2576
- return u`<tems-card-catalog
2676
+ return f`<tems-card-catalog
2577
2677
  .object=${l}
2578
2678
  .header=${o.name || l}
2579
2679
  date=${o.updated_at || l}
@@ -2586,7 +2686,7 @@ let v = class extends b {
2586
2686
  })}
2587
2687
  </div>` : l}
2588
2688
  </div>
2589
- ${s.length > 0 || this.filterFactText ? u`<div>
2689
+ ${r.length > 0 || this.filterFactText ? f`<div>
2590
2690
  <div>
2591
2691
  <tems-search-bar
2592
2692
  .displayFilters=${!1}
@@ -2601,8 +2701,8 @@ let v = class extends b {
2601
2701
  @search=${this._searchFacts}
2602
2702
  ></tems-search-bar>
2603
2703
  </div>
2604
- ${s.length > 0 ? u` <div class="card-grid card-grid-vertical">
2605
- ${s.map((o) => {
2704
+ ${r.length > 0 ? f` <div class="card-grid card-grid-vertical">
2705
+ ${r.map((o) => {
2606
2706
  const n = o.categories.map(
2607
2707
  (a) => ({
2608
2708
  name: a.name,
@@ -2612,11 +2712,11 @@ let v = class extends b {
2612
2712
  if (n.length > 3) {
2613
2713
  const a = n.length - 3;
2614
2714
  n.splice(3, a), n.push({
2615
- name: `+${a} ${d("more")}`,
2715
+ name: `+${a} ${h("more")}`,
2616
2716
  type: "information"
2617
2717
  });
2618
2718
  }
2619
- return u`<tems-card-catalog
2719
+ return f`<tems-card-catalog
2620
2720
  .object=${l}
2621
2721
  .tags=${n}
2622
2722
  .header=${o.name || l}
@@ -2629,12 +2729,12 @@ let v = class extends b {
2629
2729
  ></tems-card-catalog>`;
2630
2730
  })}
2631
2731
  </div>
2632
- ${s.length < t.length ? u`<div
2732
+ ${r.length < t.length ? f`<div
2633
2733
  class="flex flex-row justify-content-space-between align-items-flex-end"
2634
2734
  >
2635
2735
  <div>
2636
- ${d(
2637
- P`Displaying ${s.length} of ${t.length} result${t.length > 1 ? "s" : ""}`
2736
+ ${h(
2737
+ E`Displaying ${r.length} of ${t.length} result${t.length > 1 ? "s" : ""}`
2638
2738
  )}
2639
2739
  </div>
2640
2740
  <div class="flex flex-row gap-400">
@@ -2642,16 +2742,16 @@ let v = class extends b {
2642
2742
  @click=${this._showMoreResults}
2643
2743
  type="primary"
2644
2744
  size="sm"
2645
- label=${d("Show more results")}
2745
+ label=${h("Show more results")}
2646
2746
  ></tems-button>
2647
2747
  <tems-button
2648
2748
  @click=${this._showAllResults}
2649
2749
  type="primary"
2650
2750
  size="sm"
2651
- label=${d("Show all results")}
2751
+ label=${h("Show all results")}
2652
2752
  ></tems-button>
2653
2753
  </div>
2654
- </div>` : l}` : u`${d("No results found")}
2754
+ </div>` : l}` : f`${h("No results found")}
2655
2755
  ${this.filterFactText ? `for "${this.filterFactText}".` : ""}`}
2656
2756
  </div>` : l}
2657
2757
  </section>
@@ -2661,69 +2761,69 @@ let v = class extends b {
2661
2761
  });
2662
2762
  }
2663
2763
  };
2664
- v.styles = [xt(Os)];
2665
- $([
2666
- y({ attribute: "header", type: String })
2667
- ], v.prototype, "header", 2);
2668
- $([
2669
- y({ attribute: "facts-src", reflect: !0 })
2670
- ], v.prototype, "factsSrc", 2);
2671
- $([
2672
- f()
2673
- ], v.prototype, "selectedFacts", 2);
2674
- $([
2675
- f()
2676
- ], v.prototype, "bundleName", 2);
2677
- $([
2678
- f()
2679
- ], v.prototype, "bundleDescription", 2);
2680
- $([
2681
- f()
2682
- ], v.prototype, "bundleLanguage", 2);
2683
- $([
2684
- f()
2685
- ], v.prototype, "bundleAccessPolicy", 2);
2686
- $([
2687
- f()
2688
- ], v.prototype, "bundleContractPolicy", 2);
2689
- $([
2690
- f()
2691
- ], v.prototype, "filterFactText", 2);
2692
- $([
2693
- f()
2694
- ], v.prototype, "spliceLength", 2);
2695
- $([
2696
- f()
2697
- ], v.prototype, "dspConnector", 2);
2698
- v = $([
2699
- V("solid-fact-bundle-creation")
2700
- ], v);
2701
- var ks = Object.defineProperty, Ts = Object.getOwnPropertyDescriptor, tt = (e, t, s, i) => {
2702
- for (var r = i > 1 ? void 0 : i ? Ts(t, s) : t, o = e.length - 1, n; o >= 0; o--)
2703
- (n = e[o]) && (r = (i ? n(t, s, r) : n(r)) || r);
2704
- return i && r && ks(t, s, r), r;
2764
+ b.styles = [Rt(Ir)];
2765
+ _([
2766
+ v({ attribute: "header", type: String })
2767
+ ], b.prototype, "header", 2);
2768
+ _([
2769
+ v({ attribute: "facts-src", reflect: !0 })
2770
+ ], b.prototype, "factsSrc", 2);
2771
+ _([
2772
+ m()
2773
+ ], b.prototype, "selectedFacts", 2);
2774
+ _([
2775
+ m()
2776
+ ], b.prototype, "bundleName", 2);
2777
+ _([
2778
+ m()
2779
+ ], b.prototype, "bundleDescription", 2);
2780
+ _([
2781
+ m()
2782
+ ], b.prototype, "bundleLanguage", 2);
2783
+ _([
2784
+ m()
2785
+ ], b.prototype, "bundleAccessPolicy", 2);
2786
+ _([
2787
+ m()
2788
+ ], b.prototype, "bundleContractPolicy", 2);
2789
+ _([
2790
+ m()
2791
+ ], b.prototype, "filterFactText", 2);
2792
+ _([
2793
+ m()
2794
+ ], b.prototype, "spliceLength", 2);
2795
+ _([
2796
+ m()
2797
+ ], b.prototype, "dspConnector", 2);
2798
+ b = _([
2799
+ M("solid-fact-bundle-creation")
2800
+ ], b);
2801
+ var Mr = Object.defineProperty, Br = Object.getOwnPropertyDescriptor, st = (e, t, r, i) => {
2802
+ for (var s = i > 1 ? void 0 : i ? Br(t, r) : t, o = e.length - 1, n; o >= 0; o--)
2803
+ (n = e[o]) && (s = (i ? n(t, r, s) : n(s)) || s);
2804
+ return i && s && Mr(t, r, s), s;
2705
2805
  };
2706
- let F = class extends b {
2806
+ let N = class extends $ {
2707
2807
  constructor() {
2708
2808
  super(...arguments), this.header = "DS4GO Fact Bundling", this.search = [], this.resultCount = this.objects?.length || 0, this.cherryPickedProperties = [
2709
- { key: "created_at", value: "created_at", cast: T },
2710
- { key: "updated_at", value: "updated_at", cast: T },
2809
+ { key: "created_at", value: "created_at", cast: I },
2810
+ { key: "updated_at", value: "updated_at", cast: I },
2711
2811
  { key: "name", value: "name" },
2712
2812
  { key: "description", value: "description" }
2713
- ], this._getResource = new pt(this, {
2813
+ ], this._getResource = new rt(this, {
2714
2814
  task: async ([e, t]) => {
2715
2815
  if (!(!e || !this.orbit || !this.noRouter && this.route && this.currentRoute && !this.route.startsWith(this.currentRoute))) {
2716
- if (this.menuComponent.ready || await new Promise((s) => {
2816
+ if (this.menuComponent.ready || await new Promise((r) => {
2717
2817
  this.menuComponent.addEventListener("user-ready", () => {
2718
- s(!0);
2818
+ r(!0);
2719
2819
  });
2720
2820
  }), this.displayFiltering = !this.component.parameters.disableFiltering, !this.hasCachedDatas || this.oldDataSrc !== e) {
2721
2821
  if (!e) return;
2722
2822
  this.objects = await this._getProxyValue(e), this.hasCachedDatas = !0;
2723
2823
  }
2724
2824
  return this.oldDataSrc !== e && (this.oldDataSrc = e), Array.isArray(this.objects) || (this.objects = []), t ? this.object = this.objects.find(
2725
- (s) => s["@id"] === t
2726
- ) : this.dataSrc = e, j(this.objects, "name", "asc");
2825
+ (r) => r["@id"] === t
2826
+ ) : this.dataSrc = e, S(this.objects, "name", "asc");
2727
2827
  }
2728
2828
  },
2729
2829
  args: () => [
@@ -2738,14 +2838,14 @@ let F = class extends b {
2738
2838
  return e?._originalResource?.hasType("ds4go:FactBundle") && (e.facts = await Promise.all(
2739
2839
  (await e._originalResource["ldp:contains"]).map(
2740
2840
  (t) => this._getProxyValue(t["@id"], !1, [
2741
- { key: "updated_at", value: "updated_at", cast: T },
2841
+ { key: "updated_at", value: "updated_at", cast: I },
2742
2842
  { key: "name", value: "name" },
2743
2843
  { key: "description", value: "description" },
2744
2844
  {
2745
2845
  key: "categories",
2746
2846
  value: "categories",
2747
2847
  expand: !0,
2748
- cast: (s) => j(s, "name")
2848
+ cast: (r) => S(r, "name")
2749
2849
  },
2750
2850
  { key: "author", value: "author" },
2751
2851
  { key: "link", value: "link" },
@@ -2763,7 +2863,7 @@ let F = class extends b {
2763
2863
  )), Promise.resolve(e);
2764
2864
  }
2765
2865
  async _afterAttach() {
2766
- return We(this, {
2866
+ return oe(this, {
2767
2867
  keywords: ["factbundles"]
2768
2868
  }), this.menuComponent = document.querySelector(
2769
2869
  `[uniq="${this.orbit?.getComponent("menu")?.uniq}"]`
@@ -2781,10 +2881,10 @@ let F = class extends b {
2781
2881
  else {
2782
2882
  const t = e.detail["@type"]?.at(-1) ?? e.detail["@type"];
2783
2883
  if (t) {
2784
- const s = window.orbit?.components?.filter(
2884
+ const r = window.orbit?.components?.filter(
2785
2885
  (i) => i?.routeAttributes?.["rdf-type"] === t
2786
2886
  );
2787
- s?.[0]?.route && L(s[0]?.route, e.detail["@id"]);
2887
+ r?.[0]?.route && L(r[0]?.route, e.detail["@id"]);
2788
2888
  }
2789
2889
  }
2790
2890
  }
@@ -2802,15 +2902,15 @@ let F = class extends b {
2802
2902
  }
2803
2903
  render() {
2804
2904
  return this.gatekeeper() || this._getResource.render({
2805
- pending: () => u`<solid-loader></solid-loader>`,
2905
+ pending: () => f`<solid-loader></solid-loader>`,
2806
2906
  error: (e) => (console.warn("[solid-fact-bundle] Task error:", e), l),
2807
- complete: (e) => u`<tems-viewport>
2907
+ complete: (e) => f`<tems-viewport>
2808
2908
  <tems-header slot="header" heading=${this.header}>
2809
2909
  <div slot="cta">
2810
2910
  <tems-button
2811
2911
  type="primary"
2812
2912
  disabled=${!this.bundleCreationComponent?.route || l}
2813
- label=${d("Create a bundle")}
2913
+ label=${h("Create a bundle")}
2814
2914
  @click=${this._goToBundleCreation}
2815
2915
  ></tems-button>
2816
2916
  </div>
@@ -2830,7 +2930,7 @@ let F = class extends b {
2830
2930
  @clicked=${this._openModal}
2831
2931
  @result-count=${this._resultCountUpdate}
2832
2932
  ></ds4go-fact-bundle-holder>
2833
- ${this.object ? u`<div
2933
+ ${this.object ? f`<div
2834
2934
  class="modal"
2835
2935
  @click=${this._closeModalFromBackground}
2836
2936
  >
@@ -2844,7 +2944,7 @@ let F = class extends b {
2844
2944
  });
2845
2945
  }
2846
2946
  };
2847
- F.styles = lt`
2947
+ N.styles = tt`
2848
2948
  .modal {
2849
2949
  position: fixed;
2850
2950
  top: 0;
@@ -2858,30 +2958,30 @@ F.styles = lt`
2858
2958
  align-items: center;
2859
2959
  }
2860
2960
  `;
2861
- tt([
2862
- y({ attribute: "header", type: String })
2863
- ], F.prototype, "header", 2);
2864
- tt([
2865
- f()
2866
- ], F.prototype, "search", 2);
2867
- tt([
2868
- f()
2869
- ], F.prototype, "resultCount", 2);
2870
- tt([
2871
- f()
2872
- ], F.prototype, "bundleCreationComponent", 2);
2873
- F = tt([
2874
- V("solid-fact-bundle")
2875
- ], F);
2876
- const Is = {
2961
+ st([
2962
+ v({ attribute: "header", type: String })
2963
+ ], N.prototype, "header", 2);
2964
+ st([
2965
+ m()
2966
+ ], N.prototype, "search", 2);
2967
+ st([
2968
+ m()
2969
+ ], N.prototype, "resultCount", 2);
2970
+ st([
2971
+ m()
2972
+ ], N.prototype, "bundleCreationComponent", 2);
2973
+ N = st([
2974
+ M("solid-fact-bundle")
2975
+ ], N);
2976
+ const qr = {
2877
2977
  s20acf344316637a0: "All Catalogs",
2878
- s67269ab6dc51ec41: P`Error while loading catalog ${0}`,
2978
+ s67269ab6dc51ec41: E`Error while loading catalog ${0}`,
2879
2979
  s0b88896b7338837d: "All Datasets",
2880
2980
  s541d9cd11a5bc840: "Datasets from",
2881
2981
  s01ceffa02fa6bd7f: "All Sectors",
2882
2982
  s4aaac20ff7887391: "Catalogs available in",
2883
2983
  sa89a60c3e1230cec: "Root Authority",
2884
- se5784a16a6799dad: P`Back to ${0}`,
2984
+ se5784a16a6799dad: E`Back to ${0}`,
2885
2985
  s6665daa6d6147db0: "No data available, data source may be temporarily unavailable.",
2886
2986
  sc16e00a7a8b2fde2: "Back",
2887
2987
  s2c8189544e3ea679: "Retry",
@@ -2894,9 +2994,9 @@ const Is = {
2894
2994
  s21fb127cabcd5617: "Comma-separated, eg.: en,de,es,fr)",
2895
2995
  sa6ef22f7e7e95e2b: "Access policy",
2896
2996
  s6de61424bb681993: "Contract policy",
2897
- sac1b0231875ff056: P`${0} selected fact${1}`,
2997
+ sac1b0231875ff056: E`${0} selected fact${1}`,
2898
2998
  s0d1be7a2c400c080: "more",
2899
- s8272d3578b7c78d5: P`Displaying ${0} of ${1} result${2}`,
2999
+ s8272d3578b7c78d5: E`Displaying ${0} of ${1} result${2}`,
2900
3000
  sa40e7f4f2a43e2f7: "Show more results",
2901
3001
  sacf246e0fa11730d: "Show all results",
2902
3002
  s9094c0cde8fb5058: "No results found",
@@ -2906,20 +3006,20 @@ const Is = {
2906
3006
  s4979bd417e7c8052: "All facts in this bundle",
2907
3007
  s57a40de45f324b96: "Bundle created on",
2908
3008
  sd3682395cf86f913: "Bundle updated on"
2909
- }, Fs = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3009
+ }, Hr = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2910
3010
  __proto__: null,
2911
- templates: Is
2912
- }, Symbol.toStringTag, { value: "Module" })), Ms = "en", ue = [
3011
+ templates: qr
3012
+ }, Symbol.toStringTag, { value: "Module" })), zr = "en", fe = [
2913
3013
  "en"
2914
- ], Ns = /* @__PURE__ */ Object.assign({ "../../generated/locales/en.ts": Fs }), Bs = new Map(
2915
- ue.map((e) => [
3014
+ ], Vr = /* @__PURE__ */ Object.assign({ "../../generated/locales/en.ts": Hr }), Wr = new Map(
3015
+ fe.map((e) => [
2916
3016
  e,
2917
- Ns[`../../generated/locales/${e}.ts`]
3017
+ Vr[`../../generated/locales/${e}.ts`]
2918
3018
  ])
2919
- ), { getLocale: Zt, setLocale: Xt } = vs({
2920
- sourceLocale: Ms,
2921
- targetLocales: ue,
2922
- loadLocale: async (e) => Bs.get(e)
3019
+ ), { getLocale: Qt, setLocale: Yt } = _r({
3020
+ sourceLocale: zr,
3021
+ targetLocales: fe,
3022
+ loadLocale: async (e) => Wr.get(e)
2923
3023
  });
2924
- window.getLocale = window.getLocale ? window.getLocale.push(Zt) : [Zt];
2925
- window.setLocale = window.setLocale ? window.setLocale.push(Xt) : [Xt];
3024
+ window.getLocale = window.getLocale ? window.getLocale.push(Qt) : [Qt];
3025
+ window.setLocale = window.setLocale ? window.setLocale.push(Yt) : [Yt];