@pod-os/elements 0.4.1-97844f2.0 → 0.5.1-1f12da7.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 (26) hide show
  1. package/dist/cjs/elements.cjs.js +1 -1
  2. package/dist/cjs/{ion-app_42.cjs.entry.js → ion-app_44.cjs.entry.js} +257 -31
  3. package/dist/cjs/loader.cjs.js +1 -1
  4. package/dist/collection/apps/pos-app-generic/pos-app-generic.js +1 -1
  5. package/dist/collection/apps/pos-app-rdf-document/pos-app-rdf-document.js +1 -1
  6. package/dist/collection/collection-manifest.json +1 -0
  7. package/dist/collection/components/pos-navigation-bar/pos-navigation-bar.js +1 -1
  8. package/dist/collection/components/pos-resource/pos-resource.js +3 -1
  9. package/dist/collection/components/pos-type-badges/pos-type-badges.css +24 -0
  10. package/dist/collection/components/pos-type-badges/pos-type-badges.js +67 -0
  11. package/dist/collection/components/pos-type-router/pos-type-router.js +1 -1
  12. package/dist/custom-elements/index.d.ts +6 -0
  13. package/dist/custom-elements/index.js +239 -31
  14. package/dist/elements/elements.esm.js +1 -1
  15. package/dist/elements/p-971bcc64.entry.js +67 -0
  16. package/dist/esm/elements.js +1 -1
  17. package/dist/esm/{ion-app_42.entry.js → ion-app_44.entry.js} +256 -32
  18. package/dist/esm/loader.js +1 -1
  19. package/dist/types/components/pos-type-badges/pos-type-badges.d.ts +13 -0
  20. package/dist/types/components/pos-type-router/pos-type-router.d.ts +2 -2
  21. package/dist/types/components.d.ts +18 -0
  22. package/package.json +2 -2
  23. package/dist/cjs/ion-badge.cjs.entry.js +0 -29
  24. package/dist/elements/p-54211c52.entry.js +0 -1
  25. package/dist/elements/p-74916699.entry.js +0 -67
  26. package/dist/esm/ion-badge.entry.js +0 -25
@@ -41304,6 +41304,22 @@ var require_regenerator = __commonJS({
41304
41304
  // ../node_modules/@xmldom/xmldom/lib/conventions.js
41305
41305
  var require_conventions = __commonJS({
41306
41306
  "../node_modules/@xmldom/xmldom/lib/conventions.js"(exports) {
41307
+ function find(list, predicate, ac) {
41308
+ if (ac === void 0) {
41309
+ ac = Array.prototype;
41310
+ }
41311
+ if (list && typeof ac.find === "function") {
41312
+ return ac.find.call(list, predicate);
41313
+ }
41314
+ for (var i = 0; i < list.length; i++) {
41315
+ if (Object.prototype.hasOwnProperty.call(list, i)) {
41316
+ var item = list[i];
41317
+ if (predicate.call(void 0, item, i, list)) {
41318
+ return item;
41319
+ }
41320
+ }
41321
+ }
41322
+ }
41307
41323
  function freeze(object, oc) {
41308
41324
  if (oc === void 0) {
41309
41325
  oc = Object;
@@ -41341,6 +41357,7 @@ var require_conventions = __commonJS({
41341
41357
  XMLNS: "http://www.w3.org/2000/xmlns/"
41342
41358
  });
41343
41359
  exports.assign = assign;
41360
+ exports.find = find;
41344
41361
  exports.freeze = freeze;
41345
41362
  exports.MIME_TYPE = MIME_TYPE;
41346
41363
  exports.NAMESPACE = NAMESPACE;
@@ -41351,6 +41368,7 @@ var require_conventions = __commonJS({
41351
41368
  var require_dom = __commonJS({
41352
41369
  "../node_modules/@xmldom/xmldom/lib/dom.js"(exports) {
41353
41370
  var conventions = require_conventions();
41371
+ var find = conventions.find;
41354
41372
  var NAMESPACE = conventions.NAMESPACE;
41355
41373
  function notEmptyString(input) {
41356
41374
  return input !== "";
@@ -41458,6 +41476,12 @@ var require_dom = __commonJS({
41458
41476
  serializeToString(this[i], buf, isHTML, nodeFilter);
41459
41477
  }
41460
41478
  return buf.join("");
41479
+ },
41480
+ filter: function(predicate) {
41481
+ return Array.prototype.filter.call(this, predicate);
41482
+ },
41483
+ indexOf: function(item) {
41484
+ return Array.prototype.indexOf.call(this, item);
41461
41485
  }
41462
41486
  };
41463
41487
  function LiveNodeList(node, refresh) {
@@ -41520,7 +41544,7 @@ var require_dom = __commonJS({
41520
41544
  }
41521
41545
  }
41522
41546
  } else {
41523
- throw DOMException(NOT_FOUND_ERR, new Error(el.tagName + "@" + attr));
41547
+ throw new DOMException(NOT_FOUND_ERR, new Error(el.tagName + "@" + attr));
41524
41548
  }
41525
41549
  }
41526
41550
  NamedNodeMap.prototype = {
@@ -41622,7 +41646,7 @@ var require_dom = __commonJS({
41622
41646
  return _insertBefore(this, newChild, refChild);
41623
41647
  },
41624
41648
  replaceChild: function(newChild, oldChild) {
41625
- this.insertBefore(newChild, oldChild);
41649
+ _insertBefore(this, newChild, oldChild, assertPreReplacementValidityInDocument);
41626
41650
  if (oldChild) {
41627
41651
  this.removeChild(oldChild);
41628
41652
  }
@@ -41709,6 +41733,7 @@ var require_dom = __commonJS({
41709
41733
  }
41710
41734
  }
41711
41735
  function Document() {
41736
+ this.ownerDocument = this;
41712
41737
  }
41713
41738
  function _onAddAttribute(doc, el, newAttr) {
41714
41739
  doc && doc._inc++;
@@ -41761,41 +41786,153 @@ var require_dom = __commonJS({
41761
41786
  _onUpdateChild(parentNode.ownerDocument, parentNode);
41762
41787
  return child;
41763
41788
  }
41764
- function _insertBefore(parentNode, newChild, nextChild) {
41765
- var cp = newChild.parentNode;
41789
+ function hasValidParentNodeType(node) {
41790
+ return node && (node.nodeType === Node3.DOCUMENT_NODE || node.nodeType === Node3.DOCUMENT_FRAGMENT_NODE || node.nodeType === Node3.ELEMENT_NODE);
41791
+ }
41792
+ function hasInsertableNodeType(node) {
41793
+ return node && (isElementNode(node) || isTextNode(node) || isDocTypeNode(node) || node.nodeType === Node3.DOCUMENT_FRAGMENT_NODE || node.nodeType === Node3.COMMENT_NODE || node.nodeType === Node3.PROCESSING_INSTRUCTION_NODE);
41794
+ }
41795
+ function isDocTypeNode(node) {
41796
+ return node && node.nodeType === Node3.DOCUMENT_TYPE_NODE;
41797
+ }
41798
+ function isElementNode(node) {
41799
+ return node && node.nodeType === Node3.ELEMENT_NODE;
41800
+ }
41801
+ function isTextNode(node) {
41802
+ return node && node.nodeType === Node3.TEXT_NODE;
41803
+ }
41804
+ function isElementInsertionPossible(doc, child) {
41805
+ var parentChildNodes = doc.childNodes || [];
41806
+ if (find(parentChildNodes, isElementNode) || isDocTypeNode(child)) {
41807
+ return false;
41808
+ }
41809
+ var docTypeNode = find(parentChildNodes, isDocTypeNode);
41810
+ return !(child && docTypeNode && parentChildNodes.indexOf(docTypeNode) > parentChildNodes.indexOf(child));
41811
+ }
41812
+ function isElementReplacementPossible(doc, child) {
41813
+ var parentChildNodes = doc.childNodes || [];
41814
+ function hasElementChildThatIsNotChild(node) {
41815
+ return isElementNode(node) && node !== child;
41816
+ }
41817
+ if (find(parentChildNodes, hasElementChildThatIsNotChild)) {
41818
+ return false;
41819
+ }
41820
+ var docTypeNode = find(parentChildNodes, isDocTypeNode);
41821
+ return !(child && docTypeNode && parentChildNodes.indexOf(docTypeNode) > parentChildNodes.indexOf(child));
41822
+ }
41823
+ function assertPreInsertionValidity1to5(parent2, node, child) {
41824
+ if (!hasValidParentNodeType(parent2)) {
41825
+ throw new DOMException(HIERARCHY_REQUEST_ERR, "Unexpected parent node type " + parent2.nodeType);
41826
+ }
41827
+ if (child && child.parentNode !== parent2) {
41828
+ throw new DOMException(NOT_FOUND_ERR, "child not in parent");
41829
+ }
41830
+ if (!hasInsertableNodeType(node) || isDocTypeNode(node) && parent2.nodeType !== Node3.DOCUMENT_NODE) {
41831
+ throw new DOMException(
41832
+ HIERARCHY_REQUEST_ERR,
41833
+ "Unexpected node type " + node.nodeType + " for parent node type " + parent2.nodeType
41834
+ );
41835
+ }
41836
+ }
41837
+ function assertPreInsertionValidityInDocument(parent2, node, child) {
41838
+ var parentChildNodes = parent2.childNodes || [];
41839
+ var nodeChildNodes = node.childNodes || [];
41840
+ if (node.nodeType === Node3.DOCUMENT_FRAGMENT_NODE) {
41841
+ var nodeChildElements = nodeChildNodes.filter(isElementNode);
41842
+ if (nodeChildElements.length > 1 || find(nodeChildNodes, isTextNode)) {
41843
+ throw new DOMException(HIERARCHY_REQUEST_ERR, "More than one element or text in fragment");
41844
+ }
41845
+ if (nodeChildElements.length === 1 && !isElementInsertionPossible(parent2, child)) {
41846
+ throw new DOMException(HIERARCHY_REQUEST_ERR, "Element in fragment can not be inserted before doctype");
41847
+ }
41848
+ }
41849
+ if (isElementNode(node)) {
41850
+ if (!isElementInsertionPossible(parent2, child)) {
41851
+ throw new DOMException(HIERARCHY_REQUEST_ERR, "Only one element can be added and only after doctype");
41852
+ }
41853
+ }
41854
+ if (isDocTypeNode(node)) {
41855
+ if (find(parentChildNodes, isDocTypeNode)) {
41856
+ throw new DOMException(HIERARCHY_REQUEST_ERR, "Only one doctype is allowed");
41857
+ }
41858
+ var parentElementChild = find(parentChildNodes, isElementNode);
41859
+ if (child && parentChildNodes.indexOf(parentElementChild) < parentChildNodes.indexOf(child)) {
41860
+ throw new DOMException(HIERARCHY_REQUEST_ERR, "Doctype can only be inserted before an element");
41861
+ }
41862
+ if (!child && parentElementChild) {
41863
+ throw new DOMException(HIERARCHY_REQUEST_ERR, "Doctype can not be appended since element is present");
41864
+ }
41865
+ }
41866
+ }
41867
+ function assertPreReplacementValidityInDocument(parent2, node, child) {
41868
+ var parentChildNodes = parent2.childNodes || [];
41869
+ var nodeChildNodes = node.childNodes || [];
41870
+ if (node.nodeType === Node3.DOCUMENT_FRAGMENT_NODE) {
41871
+ var nodeChildElements = nodeChildNodes.filter(isElementNode);
41872
+ if (nodeChildElements.length > 1 || find(nodeChildNodes, isTextNode)) {
41873
+ throw new DOMException(HIERARCHY_REQUEST_ERR, "More than one element or text in fragment");
41874
+ }
41875
+ if (nodeChildElements.length === 1 && !isElementReplacementPossible(parent2, child)) {
41876
+ throw new DOMException(HIERARCHY_REQUEST_ERR, "Element in fragment can not be inserted before doctype");
41877
+ }
41878
+ }
41879
+ if (isElementNode(node)) {
41880
+ if (!isElementReplacementPossible(parent2, child)) {
41881
+ throw new DOMException(HIERARCHY_REQUEST_ERR, "Only one element can be added and only after doctype");
41882
+ }
41883
+ }
41884
+ if (isDocTypeNode(node)) {
41885
+ let hasDoctypeChildThatIsNotChild2 = function(node2) {
41886
+ return isDocTypeNode(node2) && node2 !== child;
41887
+ };
41888
+ if (find(parentChildNodes, hasDoctypeChildThatIsNotChild2)) {
41889
+ throw new DOMException(HIERARCHY_REQUEST_ERR, "Only one doctype is allowed");
41890
+ }
41891
+ var parentElementChild = find(parentChildNodes, isElementNode);
41892
+ if (child && parentChildNodes.indexOf(parentElementChild) < parentChildNodes.indexOf(child)) {
41893
+ throw new DOMException(HIERARCHY_REQUEST_ERR, "Doctype can only be inserted before an element");
41894
+ }
41895
+ }
41896
+ }
41897
+ function _insertBefore(parent2, node, child, _inDocumentAssertion) {
41898
+ assertPreInsertionValidity1to5(parent2, node, child);
41899
+ if (parent2.nodeType === Node3.DOCUMENT_NODE) {
41900
+ (_inDocumentAssertion || assertPreInsertionValidityInDocument)(parent2, node, child);
41901
+ }
41902
+ var cp = node.parentNode;
41766
41903
  if (cp) {
41767
- cp.removeChild(newChild);
41904
+ cp.removeChild(node);
41768
41905
  }
41769
- if (newChild.nodeType === DOCUMENT_FRAGMENT_NODE) {
41770
- var newFirst = newChild.firstChild;
41906
+ if (node.nodeType === DOCUMENT_FRAGMENT_NODE) {
41907
+ var newFirst = node.firstChild;
41771
41908
  if (newFirst == null) {
41772
- return newChild;
41909
+ return node;
41773
41910
  }
41774
- var newLast = newChild.lastChild;
41911
+ var newLast = node.lastChild;
41775
41912
  } else {
41776
- newFirst = newLast = newChild;
41913
+ newFirst = newLast = node;
41777
41914
  }
41778
- var pre = nextChild ? nextChild.previousSibling : parentNode.lastChild;
41915
+ var pre = child ? child.previousSibling : parent2.lastChild;
41779
41916
  newFirst.previousSibling = pre;
41780
- newLast.nextSibling = nextChild;
41917
+ newLast.nextSibling = child;
41781
41918
  if (pre) {
41782
41919
  pre.nextSibling = newFirst;
41783
41920
  } else {
41784
- parentNode.firstChild = newFirst;
41921
+ parent2.firstChild = newFirst;
41785
41922
  }
41786
- if (nextChild == null) {
41787
- parentNode.lastChild = newLast;
41923
+ if (child == null) {
41924
+ parent2.lastChild = newLast;
41788
41925
  } else {
41789
- nextChild.previousSibling = newLast;
41926
+ child.previousSibling = newLast;
41790
41927
  }
41791
41928
  do {
41792
- newFirst.parentNode = parentNode;
41929
+ newFirst.parentNode = parent2;
41793
41930
  } while (newFirst !== newLast && (newFirst = newFirst.nextSibling));
41794
- _onUpdateChild(parentNode.ownerDocument || parentNode, parentNode);
41795
- if (newChild.nodeType == DOCUMENT_FRAGMENT_NODE) {
41796
- newChild.firstChild = newChild.lastChild = null;
41931
+ _onUpdateChild(parent2.ownerDocument || parent2, parent2);
41932
+ if (node.nodeType == DOCUMENT_FRAGMENT_NODE) {
41933
+ node.firstChild = node.lastChild = null;
41797
41934
  }
41798
- return newChild;
41935
+ return node;
41799
41936
  }
41800
41937
  function _appendSingleChild(parentNode, newChild) {
41801
41938
  if (newChild.parentNode) {
@@ -41829,10 +41966,12 @@ var require_dom = __commonJS({
41829
41966
  }
41830
41967
  return newChild;
41831
41968
  }
41832
- if (this.documentElement == null && newChild.nodeType == ELEMENT_NODE) {
41969
+ _insertBefore(this, newChild, refChild);
41970
+ newChild.ownerDocument = this;
41971
+ if (this.documentElement === null && newChild.nodeType === ELEMENT_NODE) {
41833
41972
  this.documentElement = newChild;
41834
41973
  }
41835
- return _insertBefore(this, newChild, refChild), newChild.ownerDocument = this, newChild;
41974
+ return newChild;
41836
41975
  },
41837
41976
  removeChild: function(oldChild) {
41838
41977
  if (this.documentElement == oldChild) {
@@ -41840,6 +41979,16 @@ var require_dom = __commonJS({
41840
41979
  }
41841
41980
  return _removeChild(this, oldChild);
41842
41981
  },
41982
+ replaceChild: function(newChild, oldChild) {
41983
+ _insertBefore(this, newChild, oldChild, assertPreReplacementValidityInDocument);
41984
+ newChild.ownerDocument = this;
41985
+ if (oldChild) {
41986
+ this.removeChild(oldChild);
41987
+ }
41988
+ if (isElementNode(newChild)) {
41989
+ this.documentElement = newChild;
41990
+ }
41991
+ },
41843
41992
  importNode: function(importedNode, deep) {
41844
41993
  return importNode(this, importedNode, deep);
41845
41994
  },
@@ -56131,6 +56280,22 @@ var accumulateValues = (accumulator, current) => {
56131
56280
  });
56132
56281
  };
56133
56282
 
56283
+ // src/thing/isRdfType.ts
56284
+ function isRdfType(predicate) {
56285
+ return predicate.sameTerm(
56286
+ namedNode3("http://www.w3.org/1999/02/22-rdf-syntax-ns#type")
56287
+ );
56288
+ }
56289
+
56290
+ // src/thing/labelForType.ts
56291
+ function labelForType(typeUri) {
56292
+ if (typeUri.includes("#")) {
56293
+ return typeUri.substring(typeUri.lastIndexOf("#") + 1);
56294
+ } else {
56295
+ return typeUri.substring(typeUri.lastIndexOf("/") + 1);
56296
+ }
56297
+ }
56298
+
56134
56299
  // src/thing/Thing.ts
56135
56300
  var Thing = class {
56136
56301
  constructor(uri, store) {
@@ -56163,7 +56328,7 @@ var Thing = class {
56163
56328
  }
56164
56329
  relations() {
56165
56330
  const statements = this.store.statementsMatching(namedNode3(this.uri));
56166
- const values = statements.filter((it) => isNamedNode(it.object)).reduce(accumulateValues, {});
56331
+ const values = statements.filter((it) => isNamedNode(it.object) && !isRdfType(it.predicate)).reduce(accumulateValues, {});
56167
56332
  return Object.keys(values).map((predicate) => ({
56168
56333
  predicate,
56169
56334
  uris: values[predicate]
@@ -56245,7 +56410,10 @@ var Thing = class {
56245
56410
  }
56246
56411
  types() {
56247
56412
  const uriMap = this.store.findTypeURIs(namedNode3(this.uri));
56248
- return Object.keys(uriMap);
56413
+ return Object.keys(uriMap).map((uri) => ({
56414
+ uri,
56415
+ label: labelForType(uri)
56416
+ }));
56249
56417
  }
56250
56418
  assume(SpecificThing) {
56251
56419
  return new SpecificThing(this.uri, this.store);
@@ -56424,7 +56592,7 @@ const PosAppGeneric$1 = class extends HTMLElement$1 {
56424
56592
  this.__registerHost();
56425
56593
  }
56426
56594
  render() {
56427
- return (h("ion-grid", null, h("ion-row", null, h("ion-col", { size: "12", "size-sm": true }, h("ion-card", null, h("ion-card-header", null, h("pos-picture", null), h("ion-card-title", null, h("pos-label", null))), h("ion-card-content", null, h("pos-description", null)))), h("ion-col", { size: "12", "size-sm": true }, h("pos-literals", null)), h("ion-col", { size: "12", "size-sm": true }, h("pos-relations", null), h("pos-reverse-relations", null)))));
56595
+ return (h("ion-grid", null, h("ion-row", null, h("ion-col", { size: "12", "size-sm": true }, h("ion-card", null, h("ion-card-header", null, h("pos-type-badges", null), h("pos-picture", null), h("ion-card-title", null, h("pos-label", null))), h("ion-card-content", null, h("pos-description", null)))), h("ion-col", { size: "12", "size-sm": true }, h("pos-literals", null)), h("ion-col", { size: "12", "size-sm": true }, h("pos-relations", null), h("pos-reverse-relations", null)))));
56428
56596
  }
56429
56597
  };
56430
56598
 
@@ -56434,7 +56602,7 @@ const PosAppRdfDocument$1 = class extends HTMLElement$1 {
56434
56602
  this.__registerHost();
56435
56603
  }
56436
56604
  render() {
56437
- return (h("ion-grid", null, h("ion-row", null, h("ion-col", { size: "12", "size-sm": true }, h("pos-subjects", null)), h("ion-col", { size: "12", "size-sm": true }, h("ion-card", null, h("ion-card-header", null, h("ion-card-title", null, h("pos-label", null)), h("pos-literals", null)))))));
56605
+ return (h("ion-grid", null, h("ion-row", null, h("ion-col", { size: "12", "size-sm": true }, h("pos-subjects", null)), h("ion-col", { size: "12", "size-sm": true }, h("ion-card", null, h("ion-card-header", null, h("ion-card-title", null, h("pos-label", null), h("pos-type-badges", null)), h("pos-literals", null)))))));
56438
56606
  }
56439
56607
  };
56440
56608
 
@@ -56627,7 +56795,7 @@ const PosNavigationBar$1 = class extends HTMLElement$1 {
56627
56795
  this.linkEmitter.emit(this.value);
56628
56796
  }
56629
56797
  render() {
56630
- return (h("form", { onSubmit: e => this.onSubmit(e) }, h("ion-searchbar", { enterkeyhint: "search", placeholder: "Enter URI", value: this.uri, onIonChange: e => this.onChange(e) })));
56798
+ return (h("form", { onSubmit: e => this.onSubmit(e) }, h("ion-searchbar", { enterkeyhint: "search", placeholder: "Enter URI", value: this.uri, debounce: 0, onIonChange: e => this.onChange(e) })));
56631
56799
  }
56632
56800
  };
56633
56801
 
@@ -56734,7 +56902,9 @@ const PosResource$1 = class extends HTMLElement$1 {
56734
56902
  return h("ion-progress-bar", { type: "indeterminate" });
56735
56903
  }
56736
56904
  if (this.error) {
56737
- return h("div", null, this.error.message);
56905
+ return (h("ion-card", null, h("ion-card-header", null, h("p", null, "Sorry, something went wrong"), h("p", null, "Status:",
56906
+ // @ts-ignore
56907
+ this.error.status), h("details", null, this.error.message)), h("ion-card-content", null, h("p", null, "You can try to open the link outside PodOS:"), h("a", { href: this.uri }, this.uri))));
56738
56908
  }
56739
56909
  return h("slot", null);
56740
56910
  }
@@ -57202,6 +57372,42 @@ const PosSubjects$1 = class extends HTMLElement$1 {
57202
57372
  }
57203
57373
  };
57204
57374
 
57375
+ const posTypeBadgesCss = ".types{display:flex;gap:0.25rem;margin:0.5rem 0}.expanded{flex-direction:column;justify-content:flex-start;align-items:flex-start}ion-badge{color:#333;background:#eee}ion-badge.toggle{cursor:pointer}ion-badge.toggle:hover{background:#ddd}";
57376
+
57377
+ const PosTypeBadges$1 = class extends HTMLElement$1 {
57378
+ constructor() {
57379
+ super();
57380
+ this.__registerHost();
57381
+ this.__attachShadow();
57382
+ this.subscribeResource = createEvent(this, "pod-os:resource", 7);
57383
+ this.receiveResource = (resource) => {
57384
+ this.data = resource.types();
57385
+ this.typeLabels = [...new Set(resource.types().map(it => it.label))];
57386
+ };
57387
+ this.data = [];
57388
+ this.typeLabels = [];
57389
+ this.isExpanded = false;
57390
+ }
57391
+ componentWillLoad() {
57392
+ subscribeResource(this);
57393
+ }
57394
+ toggleDetails() {
57395
+ this.isExpanded = !this.isExpanded;
57396
+ }
57397
+ render() {
57398
+ if (this.data.length == 0) {
57399
+ return null;
57400
+ }
57401
+ if (this.isExpanded) {
57402
+ return (h("div", { class: "types expanded" }, h("ion-badge", { class: "toggle", onClick: () => this.toggleDetails() }, h("ion-icon", { name: "contract-outline" })), this.data.map(it => (h("ion-badge", null, it.uri)))));
57403
+ }
57404
+ else {
57405
+ return (h(Host, null, h("div", { class: "types" }, this.typeLabels.map(it => (h("ion-badge", null, it))), h("ion-badge", { class: "toggle", onClick: () => this.toggleDetails() }, h("ion-icon", { name: "expand-outline" })))));
57406
+ }
57407
+ }
57408
+ static get style() { return posTypeBadgesCss; }
57409
+ };
57410
+
57205
57411
  const PosTypeRouter$1 = class extends HTMLElement$1 {
57206
57412
  constructor() {
57207
57413
  super();
@@ -57220,7 +57426,7 @@ const PosTypeRouter$1 = class extends HTMLElement$1 {
57220
57426
  return this.types ? this.renderApp() : null;
57221
57427
  }
57222
57428
  renderApp() {
57223
- if (this.types.includes('http://www.w3.org/2007/ont/link#RDFDocument')) {
57429
+ if (this.types.some(type => type.uri === 'http://www.w3.org/2007/ont/link#RDFDocument')) {
57224
57430
  return h("pos-app-rdf-document", null);
57225
57431
  }
57226
57432
  else {
@@ -57339,6 +57545,7 @@ const PosReverseRelations = /*@__PURE__*/proxyCustomElement(PosReverseRelations$
57339
57545
  const PosRichLink = /*@__PURE__*/proxyCustomElement(PosRichLink$1, [1,"pos-rich-link",{"uri":[1]}]);
57340
57546
  const PosRouter = /*@__PURE__*/proxyCustomElement(PosRouter$1, [0,"pos-router",{"uri":[32]},[[0,"pod-os:link","linkClicked"]]]);
57341
57547
  const PosSubjects = /*@__PURE__*/proxyCustomElement(PosSubjects$1, [1,"pos-subjects",{"data":[32]}]);
57548
+ const PosTypeBadges = /*@__PURE__*/proxyCustomElement(PosTypeBadges$1, [1,"pos-type-badges",{"data":[32],"typeLabels":[32],"isExpanded":[32]}]);
57342
57549
  const PosTypeRouter = /*@__PURE__*/proxyCustomElement(PosTypeRouter$1, [1,"pos-type-router",{"types":[32]}]);
57343
57550
  const defineCustomElements = (opts) => {
57344
57551
  if (typeof customElements !== 'undefined') {
@@ -57448,6 +57655,7 @@ const defineCustomElements = (opts) => {
57448
57655
  PosRichLink,
57449
57656
  PosRouter,
57450
57657
  PosSubjects,
57658
+ PosTypeBadges,
57451
57659
  PosTypeRouter,
57452
57660
  TestComponent
57453
57661
  ].forEach(cmp => {
@@ -57458,4 +57666,4 @@ const defineCustomElements = (opts) => {
57458
57666
  }
57459
57667
  };
57460
57668
 
57461
- export { IonActionSheet, IonAlert, IonApp, IonAvatar, IonBackButton, IonBackdrop, IonBadge, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonCheckbox, IonChip, IonCol, IonContent, IonDatetime, IonFab, IonFabButton, IonFabList, IonFooter, IonGrid, IonHeader, IonIcon, IonImg, IonInfiniteScroll, IonInfiniteScrollContent, IonInput, IonItem, IonItemDivider, IonItemGroup, IonItemOption, IonItemOptions, IonItemSliding, IonLabel, IonList, IonListHeader, IonLoading, IonMenu, IonMenuButton, IonMenuToggle, IonModal, IonNav, IonNavLink, IonNote, IonPicker, IonPickerColumn, IonPopover, IonProgressBar, IonRadio, IonRadioGroup, IonRange, IonRefresher, IonRefresherContent, IonReorder, IonReorderGroup, IonRippleEffect, IonRoute, IonRouteRedirect, IonRouter, IonRouterLink, IonRouterOutlet, IonRow, IonSearchbar, IonSegment, IonSegmentButton, IonSelect, IonSelectOption, IonSelectPopover, IonSkeletonText, IonSlide, IonSlides, IonSpinner, IonSplitPane, IonTab, IonTabBar, IonTabButton, IonTabs, IonText, IonTextarea, IonThumbnail, IonTitle, IonToast, IonToggle, IonToolbar, IonVirtualScroll, PosApp, PosAppBrowser, PosAppGeneric, PosAppRdfDocument, PosDescription, PosImage, PosLabel, PosLiterals, PosLogin, PosNavigationBar, PosPicture, PosRelations, PosResource, PosReverseRelations, PosRichLink, PosRouter, PosSubjects, PosTypeRouter, TestComponent$1 as TestComponent, addEventListener as a, raf as b, componentOnReady as c, createGesture as d, defineCustomElements, clamp as e, createAnimation as f, getIonPageElement as g, now as n, pointerCoord as p, removeEventListener as r };
57669
+ export { IonActionSheet, IonAlert, IonApp, IonAvatar, IonBackButton, IonBackdrop, IonBadge, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonCheckbox, IonChip, IonCol, IonContent, IonDatetime, IonFab, IonFabButton, IonFabList, IonFooter, IonGrid, IonHeader, IonIcon, IonImg, IonInfiniteScroll, IonInfiniteScrollContent, IonInput, IonItem, IonItemDivider, IonItemGroup, IonItemOption, IonItemOptions, IonItemSliding, IonLabel, IonList, IonListHeader, IonLoading, IonMenu, IonMenuButton, IonMenuToggle, IonModal, IonNav, IonNavLink, IonNote, IonPicker, IonPickerColumn, IonPopover, IonProgressBar, IonRadio, IonRadioGroup, IonRange, IonRefresher, IonRefresherContent, IonReorder, IonReorderGroup, IonRippleEffect, IonRoute, IonRouteRedirect, IonRouter, IonRouterLink, IonRouterOutlet, IonRow, IonSearchbar, IonSegment, IonSegmentButton, IonSelect, IonSelectOption, IonSelectPopover, IonSkeletonText, IonSlide, IonSlides, IonSpinner, IonSplitPane, IonTab, IonTabBar, IonTabButton, IonTabs, IonText, IonTextarea, IonThumbnail, IonTitle, IonToast, IonToggle, IonToolbar, IonVirtualScroll, PosApp, PosAppBrowser, PosAppGeneric, PosAppRdfDocument, PosDescription, PosImage, PosLabel, PosLiterals, PosLogin, PosNavigationBar, PosPicture, PosRelations, PosResource, PosReverseRelations, PosRichLink, PosRouter, PosSubjects, PosTypeBadges, PosTypeRouter, TestComponent$1 as TestComponent, addEventListener as a, raf as b, componentOnReady as c, createGesture as d, defineCustomElements, clamp as e, createAnimation as f, getIonPageElement as g, now as n, pointerCoord as p, removeEventListener as r };
@@ -1 +1 @@
1
- import{p as e,b as o}from"./p-7e5300af.js";import{g as t}from"./p-65133e33.js";import"./p-cff82b6f.js";(()=>{const o=import.meta.url,t={};return""!==o&&(t.resourcesUrl=new URL(".",o).href),e(t)})().then((e=>(t(),o(JSON.parse('[["p-74916699",[[0,"pos-app-browser"],[0,"pos-router",{"uri":[32]},[[0,"pod-os:link","linkClicked"]]],[1,"pos-login",{"os":[32]}],[4,"pos-app",{"os":[32]},[[0,"pod-os:init","initializeOs"]]],[1,"ion-content",{"color":[513],"fullscreen":[4],"forceOverscroll":[1028,"force-overscroll"],"scrollX":[4,"scroll-x"],"scrollY":[4,"scroll-y"],"scrollEvents":[4,"scroll-events"],"getScrollElement":[64],"scrollToTop":[64],"scrollToBottom":[64],"scrollByPoint":[64],"scrollToPoint":[64]},[[8,"appload","onAppLoad"]]],[36,"ion-footer",{"translucent":[4]}],[36,"ion-header",{"collapse":[1],"translucent":[4]}],[33,"ion-title",{"color":[513],"size":[1]}],[33,"ion-toolbar",{"color":[513]},[[0,"ionStyle","childrenStyle"]]],[1,"pos-type-router",{"types":[32]}],[1,"pos-navigation-bar",{"uri":[1],"value":[32]}],[33,"ion-button",{"color":[513],"buttonType":[1025,"button-type"],"disabled":[516],"expand":[513],"fill":[1537],"routerDirection":[1,"router-direction"],"routerAnimation":[16],"download":[1],"href":[1],"rel":[1],"shape":[513],"size":[513],"strong":[4],"target":[1],"type":[1]}],[0,"ion-app"],[0,"pos-app-generic"],[0,"pos-app-rdf-document"],[34,"ion-searchbar",{"color":[513],"animated":[4],"autocomplete":[1],"autocorrect":[1],"cancelButtonIcon":[1,"cancel-button-icon"],"cancelButtonText":[1,"cancel-button-text"],"clearIcon":[1,"clear-icon"],"debounce":[2],"disabled":[4],"inputmode":[1],"enterkeyhint":[1],"placeholder":[1],"searchIcon":[1,"search-icon"],"showCancelButton":[1,"show-cancel-button"],"showClearButton":[1,"show-clear-button"],"spellcheck":[4],"type":[1],"value":[1025],"focused":[32],"noAnimate":[32],"setFocus":[64],"getInputElement":[64]}],[1,"pos-relations",{"data":[32]}],[1,"pos-reverse-relations",{"data":[32]}],[1,"pos-subjects",{"data":[32]}],[32,"ion-card-content"],[1,"pos-literals",{"data":[32]}],[1,"pos-picture",{"resource":[32]}],[33,"ion-card",{"color":[513],"button":[4],"type":[1],"disabled":[4],"download":[1],"href":[1],"rel":[1],"routerDirection":[1,"router-direction"],"routerAnimation":[16],"target":[1]}],[33,"ion-card-header",{"color":[513],"translucent":[4]}],[33,"ion-card-title",{"color":[513]}],[1,"ion-col",{"offset":[1],"offsetXs":[1,"offset-xs"],"offsetSm":[1,"offset-sm"],"offsetMd":[1,"offset-md"],"offsetLg":[1,"offset-lg"],"offsetXl":[1,"offset-xl"],"pull":[1],"pullXs":[1,"pull-xs"],"pullSm":[1,"pull-sm"],"pullMd":[1,"pull-md"],"pullLg":[1,"pull-lg"],"pullXl":[1,"pull-xl"],"push":[1],"pushXs":[1,"push-xs"],"pushSm":[1,"push-sm"],"pushMd":[1,"push-md"],"pushLg":[1,"push-lg"],"pushXl":[1,"push-xl"],"size":[1],"sizeXs":[1,"size-xs"],"sizeSm":[1,"size-sm"],"sizeMd":[1,"size-md"],"sizeLg":[1,"size-lg"],"sizeXl":[1,"size-xl"]},[[9,"resize","onResize"]]],[1,"ion-grid",{"fixed":[4]}],[1,"ion-row"],[1,"pos-image",{"src":[1],"os":[32],"dataUri":[32],"brokenFile":[32],"error":[32],"loading":[32]}],[1,"ion-skeleton-text",{"animated":[4]}],[1,"pos-rich-link",{"uri":[1]}],[33,"ion-item-divider",{"color":[513],"sticky":[4]}],[32,"ion-item-group"],[1,"pos-description",{"resource":[32]}],[1,"pos-resource",{"uri":[1],"lazy":[4],"os":[32],"resource":[32],"consumers":[32],"error":[32],"loading":[32],"fetch":[64]},[[0,"pod-os:resource","provideResource"]]],[32,"ion-list",{"lines":[1],"inset":[4],"closeSlidingItems":[64]}],[1,"pos-label",{"resource":[32]}],[49,"ion-item",{"color":[513],"button":[4],"detail":[4],"detailIcon":[1,"detail-icon"],"disabled":[4],"download":[1],"href":[1],"rel":[1],"lines":[1],"routerAnimation":[16],"routerDirection":[1,"router-direction"],"target":[1],"type":[1],"multipleInputs":[32],"focusable":[32]},[[0,"ionColor","labelColorChanged"],[0,"ionStyle","itemStyle"]]],[34,"ion-label",{"color":[513],"position":[1],"noAnimate":[32]}],[33,"ion-progress-bar",{"type":[1],"reversed":[4],"value":[2],"buffer":[2],"color":[513]}],[1,"ion-icon",{"mode":[1025],"color":[1],"ariaLabel":[1537,"aria-label"],"ariaHidden":[513,"aria-hidden"],"ios":[1],"md":[1],"flipRtl":[4,"flip-rtl"],"name":[513],"src":[1],"icon":[8],"size":[1],"lazy":[4],"sanitize":[4],"svgContent":[32],"isVisible":[32]}],[1,"ion-ripple-effect",{"type":[1],"addRipple":[64]}]]],["p-536e8e52",[[2,"ion-select-popover",{"header":[1],"subHeader":[1,"sub-header"],"message":[1],"options":[16]},[[0,"ionChange","onSelect"]]]]],["p-14c7c3ea",[[34,"ion-action-sheet",{"overlayIndex":[2,"overlay-index"],"keyboardClose":[4,"keyboard-close"],"enterAnimation":[16],"leaveAnimation":[16],"buttons":[16],"cssClass":[1,"css-class"],"backdropDismiss":[4,"backdrop-dismiss"],"header":[1],"subHeader":[1,"sub-header"],"translucent":[4],"animated":[4],"htmlAttributes":[16],"present":[64],"dismiss":[64],"onDidDismiss":[64],"onWillDismiss":[64]}]]],["p-1d894ac4",[[34,"ion-alert",{"overlayIndex":[2,"overlay-index"],"keyboardClose":[4,"keyboard-close"],"enterAnimation":[16],"leaveAnimation":[16],"cssClass":[1,"css-class"],"header":[1],"subHeader":[1,"sub-header"],"message":[1],"buttons":[16],"inputs":[1040],"backdropDismiss":[4,"backdrop-dismiss"],"translucent":[4],"animated":[4],"htmlAttributes":[16],"present":[64],"dismiss":[64],"onDidDismiss":[64],"onWillDismiss":[64]},[[4,"keydown","onKeydown"]]]]],["p-60df2bed",[[33,"ion-back-button",{"color":[513],"defaultHref":[1025,"default-href"],"disabled":[516],"icon":[1],"text":[1],"type":[1],"routerAnimation":[16]}]]],["p-e953934f",[[33,"ion-fab-button",{"color":[513],"activated":[4],"disabled":[4],"download":[1],"href":[1],"rel":[1],"routerDirection":[1,"router-direction"],"routerAnimation":[16],"target":[1],"show":[4],"translucent":[4],"type":[1],"size":[1],"closeIcon":[1,"close-icon"]}]]],["p-ad4e2295",[[34,"ion-loading",{"overlayIndex":[2,"overlay-index"],"keyboardClose":[4,"keyboard-close"],"enterAnimation":[16],"leaveAnimation":[16],"message":[1],"cssClass":[1,"css-class"],"duration":[2],"backdropDismiss":[4,"backdrop-dismiss"],"showBackdrop":[4,"show-backdrop"],"spinner":[1025],"translucent":[4],"animated":[4],"htmlAttributes":[16],"present":[64],"dismiss":[64],"onDidDismiss":[64],"onWillDismiss":[64]}]]],["p-8f945e6b",[[33,"ion-menu-button",{"color":[513],"disabled":[4],"menu":[1],"autoHide":[4,"auto-hide"],"type":[1],"visible":[32]},[[16,"ionMenuChange","visibilityChanged"],[16,"ionSplitPaneVisible","visibilityChanged"]]]]],["p-cf8a7031",[[34,"ion-picker",{"overlayIndex":[2,"overlay-index"],"keyboardClose":[4,"keyboard-close"],"enterAnimation":[16],"leaveAnimation":[16],"buttons":[16],"columns":[16],"cssClass":[1,"css-class"],"duration":[2],"showBackdrop":[4,"show-backdrop"],"backdropDismiss":[4,"backdrop-dismiss"],"animated":[4],"htmlAttributes":[16],"presented":[32],"present":[64],"dismiss":[64],"onDidDismiss":[64],"onWillDismiss":[64],"getColumn":[64]}]]],["p-4cca7b5e",[[0,"ion-refresher-content",{"pullingIcon":[1025,"pulling-icon"],"pullingText":[1,"pulling-text"],"refreshingSpinner":[1025,"refreshing-spinner"],"refreshingText":[1,"refreshing-text"]}]]],["p-360f1c62",[[33,"ion-toast",{"overlayIndex":[2,"overlay-index"],"color":[513],"enterAnimation":[16],"leaveAnimation":[16],"cssClass":[1,"css-class"],"duration":[2],"header":[1],"message":[1],"keyboardClose":[4,"keyboard-close"],"position":[1],"buttons":[16],"translucent":[4],"animated":[4],"htmlAttributes":[16],"present":[64],"dismiss":[64],"onDidDismiss":[64],"onWillDismiss":[64]}]]],["p-93cacd51",[[33,"ion-chip",{"color":[513],"outline":[4],"disabled":[4]}]]],["p-d9462b66",[[32,"ion-infinite-scroll-content",{"loadingSpinner":[1025,"loading-spinner"],"loadingText":[1,"loading-text"]}]]],["p-519d6a53",[[33,"ion-item-option",{"color":[513],"disabled":[4],"download":[1],"expandable":[4],"href":[1],"rel":[1],"target":[1],"type":[1]}]]],["p-a4648b74",[[33,"ion-menu",{"contentId":[513,"content-id"],"menuId":[513,"menu-id"],"type":[1025],"disabled":[1028],"side":[513],"swipeGesture":[4,"swipe-gesture"],"maxEdgeStart":[2,"max-edge-start"],"isPaneVisible":[32],"isEndSide":[32],"isOpen":[64],"isActive":[64],"open":[64],"close":[64],"toggle":[64],"setOpen":[64]},[[16,"ionSplitPaneVisible","onSplitPaneChanged"],[2,"click","onBackdropClick"],[0,"keydown","onKeydown"]]]]],["p-42e4f702",[[34,"ion-modal",{"overlayIndex":[2,"overlay-index"],"delegate":[16],"keyboardClose":[4,"keyboard-close"],"enterAnimation":[16],"leaveAnimation":[16],"component":[1],"componentProps":[16],"cssClass":[1,"css-class"],"backdropDismiss":[4,"backdrop-dismiss"],"showBackdrop":[4,"show-backdrop"],"animated":[4],"swipeToClose":[4,"swipe-to-close"],"presentingElement":[16],"htmlAttributes":[16],"present":[64],"dismiss":[64],"onDidDismiss":[64],"onWillDismiss":[64]}]]],["p-83accf46",[[34,"ion-popover",{"delegate":[16],"overlayIndex":[2,"overlay-index"],"enterAnimation":[16],"leaveAnimation":[16],"component":[1],"componentProps":[16],"keyboardClose":[4,"keyboard-close"],"cssClass":[1,"css-class"],"backdropDismiss":[4,"backdrop-dismiss"],"event":[8],"showBackdrop":[4,"show-backdrop"],"translucent":[4],"animated":[4],"htmlAttributes":[16],"present":[64],"dismiss":[64],"onDidDismiss":[64],"onWillDismiss":[64]}]]],["p-8bcba3f7",[[33,"ion-reorder",null,[[2,"click","onClick"]]]]],["p-2c03b9ab",[[33,"ion-segment-button",{"disabled":[4],"layout":[1],"type":[1],"value":[1],"checked":[32]}]]],["p-cc4cb1ac",[[33,"ion-tab-button",{"disabled":[4],"download":[1],"href":[1],"rel":[1],"layout":[1025],"selected":[1028],"tab":[1],"target":[1]},[[8,"ionTabBarChanged","onTabBarChanged"]]]]],["p-9c1dbe52",[[33,"ion-avatar"]]],["p-54211c52",[[33,"ion-badge",{"color":[513]}]]],["p-b9926d8b",[[34,"ion-buttons",{"collapse":[4]}]]],["p-4cb27b48",[[33,"ion-card-subtitle",{"color":[513]}]]],["p-b5ef0c91",[[33,"ion-checkbox",{"color":[513],"name":[1],"checked":[1028],"indeterminate":[1028],"disabled":[4],"value":[1]}]]],["p-40547acb",[[33,"ion-datetime",{"name":[1],"disabled":[4],"readonly":[4],"min":[1025],"max":[1025],"displayFormat":[1,"display-format"],"displayTimezone":[1,"display-timezone"],"pickerFormat":[1,"picker-format"],"cancelText":[1,"cancel-text"],"doneText":[1,"done-text"],"yearValues":[8,"year-values"],"monthValues":[8,"month-values"],"dayValues":[8,"day-values"],"hourValues":[8,"hour-values"],"minuteValues":[8,"minute-values"],"monthNames":[1,"month-names"],"monthShortNames":[1,"month-short-names"],"dayNames":[1,"day-names"],"dayShortNames":[1,"day-short-names"],"pickerOptions":[16],"placeholder":[1],"value":[1025],"isExpanded":[32],"open":[64]}]]],["p-8068987c",[[1,"ion-fab",{"horizontal":[1],"vertical":[1],"edge":[4],"activated":[1028],"close":[64]}]]],["p-06675ac7",[[1,"ion-fab-list",{"activated":[4],"side":[1]}]]],["p-599bb53f",[[1,"ion-img",{"alt":[1],"src":[1],"loadSrc":[32],"loadError":[32]}]]],["p-f2426182",[[0,"ion-infinite-scroll",{"threshold":[1],"disabled":[4],"position":[1],"isLoading":[32],"complete":[64]}]]],["p-b5406b58",[[34,"ion-input",{"fireFocusEvents":[4,"fire-focus-events"],"color":[513],"accept":[1],"autocapitalize":[1],"autocomplete":[1],"autocorrect":[1],"autofocus":[4],"clearInput":[4,"clear-input"],"clearOnEdit":[4,"clear-on-edit"],"debounce":[2],"disabled":[4],"enterkeyhint":[1],"inputmode":[1],"max":[1],"maxlength":[2],"min":[1],"minlength":[2],"multiple":[4],"name":[1],"pattern":[1],"placeholder":[1],"readonly":[4],"required":[4],"spellcheck":[4],"step":[1],"size":[2],"type":[1],"value":[1032],"hasFocus":[32],"setFocus":[64],"setBlur":[64],"getInputElement":[64]}]]],["p-31d30e42",[[32,"ion-item-options",{"side":[1],"fireSwipeEvent":[64]}]]],["p-b6ba623e",[[0,"ion-item-sliding",{"disabled":[4],"state":[32],"getOpenAmount":[64],"getSlidingRatio":[64],"open":[64],"close":[64],"closeOpened":[64]}]]],["p-8c759f51",[[1,"ion-menu-toggle",{"menu":[1],"autoHide":[4,"auto-hide"],"visible":[32]},[[16,"ionMenuChange","visibilityChanged"],[16,"ionSplitPaneVisible","visibilityChanged"]]]]],["p-4ad72d54",[[1,"ion-nav",{"delegate":[16],"swipeGesture":[1028,"swipe-gesture"],"animated":[4],"animation":[16],"rootParams":[16],"root":[1],"push":[64],"insert":[64],"insertPages":[64],"pop":[64],"popTo":[64],"popToRoot":[64],"removeIndex":[64],"setRoot":[64],"setPages":[64],"setRouteId":[64],"getRouteId":[64],"getActive":[64],"getByIndex":[64],"canGoBack":[64],"getPrevious":[64]}]]],["p-689bdcc1",[[0,"ion-nav-link",{"component":[1],"componentProps":[16],"routerDirection":[1,"router-direction"],"routerAnimation":[16]}]]],["p-70713b3d",[[33,"ion-note",{"color":[513]}]]],["p-f10a94f6",[[33,"ion-range",{"color":[513],"debounce":[2],"name":[1],"dualKnobs":[4,"dual-knobs"],"min":[2],"max":[2],"pin":[4],"snaps":[4],"step":[2],"ticks":[4],"disabled":[4],"value":[1026],"ratioA":[32],"ratioB":[32],"pressedKnob":[32]}]]],["p-89c12ce8",[[32,"ion-refresher",{"pullMin":[2,"pull-min"],"pullMax":[2,"pull-max"],"closeDuration":[1,"close-duration"],"snapbackDuration":[1,"snapback-duration"],"pullFactor":[2,"pull-factor"],"disabled":[4],"nativeRefresher":[32],"state":[32],"complete":[64],"cancel":[64],"getProgress":[64]}]]],["p-86635d06",[[0,"ion-reorder-group",{"disabled":[4],"state":[32],"complete":[64]}]]],["p-e860be6a",[[0,"ion-route",{"url":[1],"component":[1],"componentProps":[16],"beforeLeave":[16],"beforeEnter":[16]}]]],["p-aaa8393e",[[0,"ion-route-redirect",{"from":[1],"to":[1]}]]],["p-40b68014",[[0,"ion-router",{"root":[1],"useHash":[4,"use-hash"],"canTransition":[64],"push":[64],"back":[64],"printDebug":[64],"navChanged":[64]},[[8,"popstate","onPopState"],[4,"ionBackButton","onBackButton"]]]]],["p-305e246c",[[1,"ion-router-link",{"color":[513],"href":[1],"rel":[1],"routerDirection":[1,"router-direction"],"routerAnimation":[16],"target":[1]}]]],["p-373e1f25",[[1,"ion-router-outlet",{"mode":[1025],"delegate":[16],"animated":[4],"animation":[16],"swipeHandler":[16],"commit":[64],"setRouteId":[64],"getRouteId":[64]}]]],["p-bfd4cfcd",[[33,"ion-segment",{"color":[513],"disabled":[4],"scrollable":[4],"swipeGesture":[4,"swipe-gesture"],"value":[1025],"activated":[32]}]]],["p-73992898",[[33,"ion-select",{"disabled":[4],"cancelText":[1,"cancel-text"],"okText":[1,"ok-text"],"placeholder":[1],"name":[1],"selectedText":[1,"selected-text"],"multiple":[4],"interface":[1],"interfaceOptions":[8,"interface-options"],"compareWith":[1,"compare-with"],"value":[1032],"isExpanded":[32],"open":[64]}]]],["p-e2e0fee9",[[1,"ion-select-option",{"disabled":[4],"value":[8]}]]],["p-83d45051",[[0,"ion-slide"]]],["p-0be044f1",[[36,"ion-slides",{"options":[8],"pager":[4],"scrollbar":[4],"update":[64],"updateAutoHeight":[64],"slideTo":[64],"slideNext":[64],"slidePrev":[64],"getActiveIndex":[64],"getPreviousIndex":[64],"length":[64],"isEnd":[64],"isBeginning":[64],"startAutoplay":[64],"stopAutoplay":[64],"lockSwipeToNext":[64],"lockSwipeToPrev":[64],"lockSwipes":[64],"getSwiper":[64]}]]],["p-792c1e0f",[[33,"ion-split-pane",{"contentId":[513,"content-id"],"disabled":[4],"when":[8],"visible":[32]}]]],["p-e642b266",[[1,"ion-tab",{"active":[1028],"delegate":[16],"tab":[1],"component":[1],"setActive":[64]}]]],["p-c08dd7d0",[[33,"ion-tab-bar",{"color":[513],"selectedTab":[1,"selected-tab"],"translucent":[4],"keyboardVisible":[32]}]]],["p-afb8f7d5",[[1,"ion-tabs",{"useRouter":[1028,"use-router"],"selectedTab":[32],"select":[64],"getTab":[64],"getSelected":[64],"setRouteId":[64],"getRouteId":[64]}]]],["p-f8a3367d",[[1,"ion-text",{"color":[513]}]]],["p-23b89ccb",[[34,"ion-textarea",{"fireFocusEvents":[4,"fire-focus-events"],"color":[513],"autocapitalize":[1],"autofocus":[4],"clearOnEdit":[1028,"clear-on-edit"],"debounce":[2],"disabled":[4],"inputmode":[1],"enterkeyhint":[1],"maxlength":[2],"minlength":[2],"name":[1],"placeholder":[1],"readonly":[4],"required":[4],"spellcheck":[4],"cols":[2],"rows":[2],"wrap":[1],"autoGrow":[4,"auto-grow"],"value":[1025],"hasFocus":[32],"setFocus":[64],"setBlur":[64],"getInputElement":[64]}]]],["p-b3460325",[[1,"ion-thumbnail"]]],["p-d6d1e65f",[[33,"ion-toggle",{"color":[513],"name":[1],"checked":[1028],"disabled":[4],"value":[1],"activated":[32]}]]],["p-b078d63b",[[0,"ion-virtual-scroll",{"approxItemHeight":[2,"approx-item-height"],"approxHeaderHeight":[2,"approx-header-height"],"approxFooterHeight":[2,"approx-footer-height"],"headerFn":[16],"footerFn":[16],"items":[16],"itemHeight":[16],"headerHeight":[16],"footerHeight":[16],"renderItem":[16],"renderHeader":[16],"renderFooter":[16],"nodeRender":[16],"domRender":[16],"totalHeight":[32],"positionForItem":[64],"checkRange":[64],"checkEnd":[64]},[[9,"resize","onResize"]]]]],["p-9408d0b4",[[0,"test-component"]]],["p-119c7c6c",[[32,"ion-picker-column",{"col":[16]}]]],["p-c0db9c51",[[33,"ion-list-header",{"color":[513],"lines":[1]}],[33,"ion-radio",{"color":[513],"name":[1],"disabled":[4],"value":[8],"checked":[32],"buttonTabindex":[32],"setFocus":[64],"setButtonTabindex":[64]}],[0,"ion-radio-group",{"allowEmptySelection":[4,"allow-empty-selection"],"name":[1],"value":[1032]},[[4,"keydown","onKeydown"]]]]],["p-1dafa1ce",[[1,"ion-spinner",{"color":[513],"duration":[2],"name":[1],"paused":[4]}]]],["p-74ba1e42",[[33,"ion-backdrop",{"visible":[4],"tappable":[4],"stopPropagation":[4,"stop-propagation"]},[[2,"click","onMouseDown"]]]]]]'),e))));
1
+ import{p as e,b as o}from"./p-7e5300af.js";import{g as t}from"./p-65133e33.js";import"./p-cff82b6f.js";(()=>{const o=import.meta.url,t={};return""!==o&&(t.resourcesUrl=new URL(".",o).href),e(t)})().then((e=>(t(),o(JSON.parse('[["p-971bcc64",[[0,"pos-app-browser"],[0,"pos-router",{"uri":[32]},[[0,"pod-os:link","linkClicked"]]],[1,"pos-login",{"os":[32]}],[4,"pos-app",{"os":[32]},[[0,"pod-os:init","initializeOs"]]],[1,"ion-content",{"color":[513],"fullscreen":[4],"forceOverscroll":[1028,"force-overscroll"],"scrollX":[4,"scroll-x"],"scrollY":[4,"scroll-y"],"scrollEvents":[4,"scroll-events"],"getScrollElement":[64],"scrollToTop":[64],"scrollToBottom":[64],"scrollByPoint":[64],"scrollToPoint":[64]},[[8,"appload","onAppLoad"]]],[36,"ion-footer",{"translucent":[4]}],[36,"ion-header",{"collapse":[1],"translucent":[4]}],[33,"ion-title",{"color":[513],"size":[1]}],[33,"ion-toolbar",{"color":[513]},[[0,"ionStyle","childrenStyle"]]],[1,"pos-type-router",{"types":[32]}],[1,"pos-navigation-bar",{"uri":[1],"value":[32]}],[33,"ion-button",{"color":[513],"buttonType":[1025,"button-type"],"disabled":[516],"expand":[513],"fill":[1537],"routerDirection":[1,"router-direction"],"routerAnimation":[16],"download":[1],"href":[1],"rel":[1],"shape":[513],"size":[513],"strong":[4],"target":[1],"type":[1]}],[0,"ion-app"],[0,"pos-app-generic"],[0,"pos-app-rdf-document"],[34,"ion-searchbar",{"color":[513],"animated":[4],"autocomplete":[1],"autocorrect":[1],"cancelButtonIcon":[1,"cancel-button-icon"],"cancelButtonText":[1,"cancel-button-text"],"clearIcon":[1,"clear-icon"],"debounce":[2],"disabled":[4],"inputmode":[1],"enterkeyhint":[1],"placeholder":[1],"searchIcon":[1,"search-icon"],"showCancelButton":[1,"show-cancel-button"],"showClearButton":[1,"show-clear-button"],"spellcheck":[4],"type":[1],"value":[1025],"focused":[32],"noAnimate":[32],"setFocus":[64],"getInputElement":[64]}],[1,"pos-relations",{"data":[32]}],[1,"pos-reverse-relations",{"data":[32]}],[1,"pos-subjects",{"data":[32]}],[1,"pos-literals",{"data":[32]}],[1,"pos-picture",{"resource":[32]}],[1,"pos-type-badges",{"data":[32],"typeLabels":[32],"isExpanded":[32]}],[33,"ion-card-title",{"color":[513]}],[1,"ion-col",{"offset":[1],"offsetXs":[1,"offset-xs"],"offsetSm":[1,"offset-sm"],"offsetMd":[1,"offset-md"],"offsetLg":[1,"offset-lg"],"offsetXl":[1,"offset-xl"],"pull":[1],"pullXs":[1,"pull-xs"],"pullSm":[1,"pull-sm"],"pullMd":[1,"pull-md"],"pullLg":[1,"pull-lg"],"pullXl":[1,"pull-xl"],"push":[1],"pushXs":[1,"push-xs"],"pushSm":[1,"push-sm"],"pushMd":[1,"push-md"],"pushLg":[1,"push-lg"],"pushXl":[1,"push-xl"],"size":[1],"sizeXs":[1,"size-xs"],"sizeSm":[1,"size-sm"],"sizeMd":[1,"size-md"],"sizeLg":[1,"size-lg"],"sizeXl":[1,"size-xl"]},[[9,"resize","onResize"]]],[1,"ion-grid",{"fixed":[4]}],[1,"ion-row"],[1,"pos-image",{"src":[1],"os":[32],"dataUri":[32],"brokenFile":[32],"error":[32],"loading":[32]}],[33,"ion-badge",{"color":[513]}],[1,"ion-skeleton-text",{"animated":[4]}],[1,"pos-rich-link",{"uri":[1]}],[33,"ion-item-divider",{"color":[513],"sticky":[4]}],[32,"ion-item-group"],[1,"pos-description",{"resource":[32]}],[1,"pos-resource",{"uri":[1],"lazy":[4],"os":[32],"resource":[32],"consumers":[32],"error":[32],"loading":[32],"fetch":[64]},[[0,"pod-os:resource","provideResource"]]],[32,"ion-list",{"lines":[1],"inset":[4],"closeSlidingItems":[64]}],[1,"pos-label",{"resource":[32]}],[49,"ion-item",{"color":[513],"button":[4],"detail":[4],"detailIcon":[1,"detail-icon"],"disabled":[4],"download":[1],"href":[1],"rel":[1],"lines":[1],"routerAnimation":[16],"routerDirection":[1,"router-direction"],"target":[1],"type":[1],"multipleInputs":[32],"focusable":[32]},[[0,"ionColor","labelColorChanged"],[0,"ionStyle","itemStyle"]]],[33,"ion-card",{"color":[513],"button":[4],"type":[1],"disabled":[4],"download":[1],"href":[1],"rel":[1],"routerDirection":[1,"router-direction"],"routerAnimation":[16],"target":[1]}],[32,"ion-card-content"],[33,"ion-card-header",{"color":[513],"translucent":[4]}],[34,"ion-label",{"color":[513],"position":[1],"noAnimate":[32]}],[33,"ion-progress-bar",{"type":[1],"reversed":[4],"value":[2],"buffer":[2],"color":[513]}],[1,"ion-icon",{"mode":[1025],"color":[1],"ariaLabel":[1537,"aria-label"],"ariaHidden":[513,"aria-hidden"],"ios":[1],"md":[1],"flipRtl":[4,"flip-rtl"],"name":[513],"src":[1],"icon":[8],"size":[1],"lazy":[4],"sanitize":[4],"svgContent":[32],"isVisible":[32]}],[1,"ion-ripple-effect",{"type":[1],"addRipple":[64]}]]],["p-536e8e52",[[2,"ion-select-popover",{"header":[1],"subHeader":[1,"sub-header"],"message":[1],"options":[16]},[[0,"ionChange","onSelect"]]]]],["p-14c7c3ea",[[34,"ion-action-sheet",{"overlayIndex":[2,"overlay-index"],"keyboardClose":[4,"keyboard-close"],"enterAnimation":[16],"leaveAnimation":[16],"buttons":[16],"cssClass":[1,"css-class"],"backdropDismiss":[4,"backdrop-dismiss"],"header":[1],"subHeader":[1,"sub-header"],"translucent":[4],"animated":[4],"htmlAttributes":[16],"present":[64],"dismiss":[64],"onDidDismiss":[64],"onWillDismiss":[64]}]]],["p-1d894ac4",[[34,"ion-alert",{"overlayIndex":[2,"overlay-index"],"keyboardClose":[4,"keyboard-close"],"enterAnimation":[16],"leaveAnimation":[16],"cssClass":[1,"css-class"],"header":[1],"subHeader":[1,"sub-header"],"message":[1],"buttons":[16],"inputs":[1040],"backdropDismiss":[4,"backdrop-dismiss"],"translucent":[4],"animated":[4],"htmlAttributes":[16],"present":[64],"dismiss":[64],"onDidDismiss":[64],"onWillDismiss":[64]},[[4,"keydown","onKeydown"]]]]],["p-60df2bed",[[33,"ion-back-button",{"color":[513],"defaultHref":[1025,"default-href"],"disabled":[516],"icon":[1],"text":[1],"type":[1],"routerAnimation":[16]}]]],["p-e953934f",[[33,"ion-fab-button",{"color":[513],"activated":[4],"disabled":[4],"download":[1],"href":[1],"rel":[1],"routerDirection":[1,"router-direction"],"routerAnimation":[16],"target":[1],"show":[4],"translucent":[4],"type":[1],"size":[1],"closeIcon":[1,"close-icon"]}]]],["p-ad4e2295",[[34,"ion-loading",{"overlayIndex":[2,"overlay-index"],"keyboardClose":[4,"keyboard-close"],"enterAnimation":[16],"leaveAnimation":[16],"message":[1],"cssClass":[1,"css-class"],"duration":[2],"backdropDismiss":[4,"backdrop-dismiss"],"showBackdrop":[4,"show-backdrop"],"spinner":[1025],"translucent":[4],"animated":[4],"htmlAttributes":[16],"present":[64],"dismiss":[64],"onDidDismiss":[64],"onWillDismiss":[64]}]]],["p-8f945e6b",[[33,"ion-menu-button",{"color":[513],"disabled":[4],"menu":[1],"autoHide":[4,"auto-hide"],"type":[1],"visible":[32]},[[16,"ionMenuChange","visibilityChanged"],[16,"ionSplitPaneVisible","visibilityChanged"]]]]],["p-cf8a7031",[[34,"ion-picker",{"overlayIndex":[2,"overlay-index"],"keyboardClose":[4,"keyboard-close"],"enterAnimation":[16],"leaveAnimation":[16],"buttons":[16],"columns":[16],"cssClass":[1,"css-class"],"duration":[2],"showBackdrop":[4,"show-backdrop"],"backdropDismiss":[4,"backdrop-dismiss"],"animated":[4],"htmlAttributes":[16],"presented":[32],"present":[64],"dismiss":[64],"onDidDismiss":[64],"onWillDismiss":[64],"getColumn":[64]}]]],["p-4cca7b5e",[[0,"ion-refresher-content",{"pullingIcon":[1025,"pulling-icon"],"pullingText":[1,"pulling-text"],"refreshingSpinner":[1025,"refreshing-spinner"],"refreshingText":[1,"refreshing-text"]}]]],["p-360f1c62",[[33,"ion-toast",{"overlayIndex":[2,"overlay-index"],"color":[513],"enterAnimation":[16],"leaveAnimation":[16],"cssClass":[1,"css-class"],"duration":[2],"header":[1],"message":[1],"keyboardClose":[4,"keyboard-close"],"position":[1],"buttons":[16],"translucent":[4],"animated":[4],"htmlAttributes":[16],"present":[64],"dismiss":[64],"onDidDismiss":[64],"onWillDismiss":[64]}]]],["p-93cacd51",[[33,"ion-chip",{"color":[513],"outline":[4],"disabled":[4]}]]],["p-d9462b66",[[32,"ion-infinite-scroll-content",{"loadingSpinner":[1025,"loading-spinner"],"loadingText":[1,"loading-text"]}]]],["p-519d6a53",[[33,"ion-item-option",{"color":[513],"disabled":[4],"download":[1],"expandable":[4],"href":[1],"rel":[1],"target":[1],"type":[1]}]]],["p-a4648b74",[[33,"ion-menu",{"contentId":[513,"content-id"],"menuId":[513,"menu-id"],"type":[1025],"disabled":[1028],"side":[513],"swipeGesture":[4,"swipe-gesture"],"maxEdgeStart":[2,"max-edge-start"],"isPaneVisible":[32],"isEndSide":[32],"isOpen":[64],"isActive":[64],"open":[64],"close":[64],"toggle":[64],"setOpen":[64]},[[16,"ionSplitPaneVisible","onSplitPaneChanged"],[2,"click","onBackdropClick"],[0,"keydown","onKeydown"]]]]],["p-42e4f702",[[34,"ion-modal",{"overlayIndex":[2,"overlay-index"],"delegate":[16],"keyboardClose":[4,"keyboard-close"],"enterAnimation":[16],"leaveAnimation":[16],"component":[1],"componentProps":[16],"cssClass":[1,"css-class"],"backdropDismiss":[4,"backdrop-dismiss"],"showBackdrop":[4,"show-backdrop"],"animated":[4],"swipeToClose":[4,"swipe-to-close"],"presentingElement":[16],"htmlAttributes":[16],"present":[64],"dismiss":[64],"onDidDismiss":[64],"onWillDismiss":[64]}]]],["p-83accf46",[[34,"ion-popover",{"delegate":[16],"overlayIndex":[2,"overlay-index"],"enterAnimation":[16],"leaveAnimation":[16],"component":[1],"componentProps":[16],"keyboardClose":[4,"keyboard-close"],"cssClass":[1,"css-class"],"backdropDismiss":[4,"backdrop-dismiss"],"event":[8],"showBackdrop":[4,"show-backdrop"],"translucent":[4],"animated":[4],"htmlAttributes":[16],"present":[64],"dismiss":[64],"onDidDismiss":[64],"onWillDismiss":[64]}]]],["p-8bcba3f7",[[33,"ion-reorder",null,[[2,"click","onClick"]]]]],["p-2c03b9ab",[[33,"ion-segment-button",{"disabled":[4],"layout":[1],"type":[1],"value":[1],"checked":[32]}]]],["p-cc4cb1ac",[[33,"ion-tab-button",{"disabled":[4],"download":[1],"href":[1],"rel":[1],"layout":[1025],"selected":[1028],"tab":[1],"target":[1]},[[8,"ionTabBarChanged","onTabBarChanged"]]]]],["p-9c1dbe52",[[33,"ion-avatar"]]],["p-b9926d8b",[[34,"ion-buttons",{"collapse":[4]}]]],["p-4cb27b48",[[33,"ion-card-subtitle",{"color":[513]}]]],["p-b5ef0c91",[[33,"ion-checkbox",{"color":[513],"name":[1],"checked":[1028],"indeterminate":[1028],"disabled":[4],"value":[1]}]]],["p-40547acb",[[33,"ion-datetime",{"name":[1],"disabled":[4],"readonly":[4],"min":[1025],"max":[1025],"displayFormat":[1,"display-format"],"displayTimezone":[1,"display-timezone"],"pickerFormat":[1,"picker-format"],"cancelText":[1,"cancel-text"],"doneText":[1,"done-text"],"yearValues":[8,"year-values"],"monthValues":[8,"month-values"],"dayValues":[8,"day-values"],"hourValues":[8,"hour-values"],"minuteValues":[8,"minute-values"],"monthNames":[1,"month-names"],"monthShortNames":[1,"month-short-names"],"dayNames":[1,"day-names"],"dayShortNames":[1,"day-short-names"],"pickerOptions":[16],"placeholder":[1],"value":[1025],"isExpanded":[32],"open":[64]}]]],["p-8068987c",[[1,"ion-fab",{"horizontal":[1],"vertical":[1],"edge":[4],"activated":[1028],"close":[64]}]]],["p-06675ac7",[[1,"ion-fab-list",{"activated":[4],"side":[1]}]]],["p-599bb53f",[[1,"ion-img",{"alt":[1],"src":[1],"loadSrc":[32],"loadError":[32]}]]],["p-f2426182",[[0,"ion-infinite-scroll",{"threshold":[1],"disabled":[4],"position":[1],"isLoading":[32],"complete":[64]}]]],["p-b5406b58",[[34,"ion-input",{"fireFocusEvents":[4,"fire-focus-events"],"color":[513],"accept":[1],"autocapitalize":[1],"autocomplete":[1],"autocorrect":[1],"autofocus":[4],"clearInput":[4,"clear-input"],"clearOnEdit":[4,"clear-on-edit"],"debounce":[2],"disabled":[4],"enterkeyhint":[1],"inputmode":[1],"max":[1],"maxlength":[2],"min":[1],"minlength":[2],"multiple":[4],"name":[1],"pattern":[1],"placeholder":[1],"readonly":[4],"required":[4],"spellcheck":[4],"step":[1],"size":[2],"type":[1],"value":[1032],"hasFocus":[32],"setFocus":[64],"setBlur":[64],"getInputElement":[64]}]]],["p-31d30e42",[[32,"ion-item-options",{"side":[1],"fireSwipeEvent":[64]}]]],["p-b6ba623e",[[0,"ion-item-sliding",{"disabled":[4],"state":[32],"getOpenAmount":[64],"getSlidingRatio":[64],"open":[64],"close":[64],"closeOpened":[64]}]]],["p-8c759f51",[[1,"ion-menu-toggle",{"menu":[1],"autoHide":[4,"auto-hide"],"visible":[32]},[[16,"ionMenuChange","visibilityChanged"],[16,"ionSplitPaneVisible","visibilityChanged"]]]]],["p-4ad72d54",[[1,"ion-nav",{"delegate":[16],"swipeGesture":[1028,"swipe-gesture"],"animated":[4],"animation":[16],"rootParams":[16],"root":[1],"push":[64],"insert":[64],"insertPages":[64],"pop":[64],"popTo":[64],"popToRoot":[64],"removeIndex":[64],"setRoot":[64],"setPages":[64],"setRouteId":[64],"getRouteId":[64],"getActive":[64],"getByIndex":[64],"canGoBack":[64],"getPrevious":[64]}]]],["p-689bdcc1",[[0,"ion-nav-link",{"component":[1],"componentProps":[16],"routerDirection":[1,"router-direction"],"routerAnimation":[16]}]]],["p-70713b3d",[[33,"ion-note",{"color":[513]}]]],["p-f10a94f6",[[33,"ion-range",{"color":[513],"debounce":[2],"name":[1],"dualKnobs":[4,"dual-knobs"],"min":[2],"max":[2],"pin":[4],"snaps":[4],"step":[2],"ticks":[4],"disabled":[4],"value":[1026],"ratioA":[32],"ratioB":[32],"pressedKnob":[32]}]]],["p-89c12ce8",[[32,"ion-refresher",{"pullMin":[2,"pull-min"],"pullMax":[2,"pull-max"],"closeDuration":[1,"close-duration"],"snapbackDuration":[1,"snapback-duration"],"pullFactor":[2,"pull-factor"],"disabled":[4],"nativeRefresher":[32],"state":[32],"complete":[64],"cancel":[64],"getProgress":[64]}]]],["p-86635d06",[[0,"ion-reorder-group",{"disabled":[4],"state":[32],"complete":[64]}]]],["p-e860be6a",[[0,"ion-route",{"url":[1],"component":[1],"componentProps":[16],"beforeLeave":[16],"beforeEnter":[16]}]]],["p-aaa8393e",[[0,"ion-route-redirect",{"from":[1],"to":[1]}]]],["p-40b68014",[[0,"ion-router",{"root":[1],"useHash":[4,"use-hash"],"canTransition":[64],"push":[64],"back":[64],"printDebug":[64],"navChanged":[64]},[[8,"popstate","onPopState"],[4,"ionBackButton","onBackButton"]]]]],["p-305e246c",[[1,"ion-router-link",{"color":[513],"href":[1],"rel":[1],"routerDirection":[1,"router-direction"],"routerAnimation":[16],"target":[1]}]]],["p-373e1f25",[[1,"ion-router-outlet",{"mode":[1025],"delegate":[16],"animated":[4],"animation":[16],"swipeHandler":[16],"commit":[64],"setRouteId":[64],"getRouteId":[64]}]]],["p-bfd4cfcd",[[33,"ion-segment",{"color":[513],"disabled":[4],"scrollable":[4],"swipeGesture":[4,"swipe-gesture"],"value":[1025],"activated":[32]}]]],["p-73992898",[[33,"ion-select",{"disabled":[4],"cancelText":[1,"cancel-text"],"okText":[1,"ok-text"],"placeholder":[1],"name":[1],"selectedText":[1,"selected-text"],"multiple":[4],"interface":[1],"interfaceOptions":[8,"interface-options"],"compareWith":[1,"compare-with"],"value":[1032],"isExpanded":[32],"open":[64]}]]],["p-e2e0fee9",[[1,"ion-select-option",{"disabled":[4],"value":[8]}]]],["p-83d45051",[[0,"ion-slide"]]],["p-0be044f1",[[36,"ion-slides",{"options":[8],"pager":[4],"scrollbar":[4],"update":[64],"updateAutoHeight":[64],"slideTo":[64],"slideNext":[64],"slidePrev":[64],"getActiveIndex":[64],"getPreviousIndex":[64],"length":[64],"isEnd":[64],"isBeginning":[64],"startAutoplay":[64],"stopAutoplay":[64],"lockSwipeToNext":[64],"lockSwipeToPrev":[64],"lockSwipes":[64],"getSwiper":[64]}]]],["p-792c1e0f",[[33,"ion-split-pane",{"contentId":[513,"content-id"],"disabled":[4],"when":[8],"visible":[32]}]]],["p-e642b266",[[1,"ion-tab",{"active":[1028],"delegate":[16],"tab":[1],"component":[1],"setActive":[64]}]]],["p-c08dd7d0",[[33,"ion-tab-bar",{"color":[513],"selectedTab":[1,"selected-tab"],"translucent":[4],"keyboardVisible":[32]}]]],["p-afb8f7d5",[[1,"ion-tabs",{"useRouter":[1028,"use-router"],"selectedTab":[32],"select":[64],"getTab":[64],"getSelected":[64],"setRouteId":[64],"getRouteId":[64]}]]],["p-f8a3367d",[[1,"ion-text",{"color":[513]}]]],["p-23b89ccb",[[34,"ion-textarea",{"fireFocusEvents":[4,"fire-focus-events"],"color":[513],"autocapitalize":[1],"autofocus":[4],"clearOnEdit":[1028,"clear-on-edit"],"debounce":[2],"disabled":[4],"inputmode":[1],"enterkeyhint":[1],"maxlength":[2],"minlength":[2],"name":[1],"placeholder":[1],"readonly":[4],"required":[4],"spellcheck":[4],"cols":[2],"rows":[2],"wrap":[1],"autoGrow":[4,"auto-grow"],"value":[1025],"hasFocus":[32],"setFocus":[64],"setBlur":[64],"getInputElement":[64]}]]],["p-b3460325",[[1,"ion-thumbnail"]]],["p-d6d1e65f",[[33,"ion-toggle",{"color":[513],"name":[1],"checked":[1028],"disabled":[4],"value":[1],"activated":[32]}]]],["p-b078d63b",[[0,"ion-virtual-scroll",{"approxItemHeight":[2,"approx-item-height"],"approxHeaderHeight":[2,"approx-header-height"],"approxFooterHeight":[2,"approx-footer-height"],"headerFn":[16],"footerFn":[16],"items":[16],"itemHeight":[16],"headerHeight":[16],"footerHeight":[16],"renderItem":[16],"renderHeader":[16],"renderFooter":[16],"nodeRender":[16],"domRender":[16],"totalHeight":[32],"positionForItem":[64],"checkRange":[64],"checkEnd":[64]},[[9,"resize","onResize"]]]]],["p-9408d0b4",[[0,"test-component"]]],["p-119c7c6c",[[32,"ion-picker-column",{"col":[16]}]]],["p-c0db9c51",[[33,"ion-list-header",{"color":[513],"lines":[1]}],[33,"ion-radio",{"color":[513],"name":[1],"disabled":[4],"value":[8],"checked":[32],"buttonTabindex":[32],"setFocus":[64],"setButtonTabindex":[64]}],[0,"ion-radio-group",{"allowEmptySelection":[4,"allow-empty-selection"],"name":[1],"value":[1032]},[[4,"keydown","onKeydown"]]]]],["p-1dafa1ce",[[1,"ion-spinner",{"color":[513],"duration":[2],"name":[1],"paused":[4]}]]],["p-74ba1e42",[[33,"ion-backdrop",{"visible":[4],"tappable":[4],"stopPropagation":[4,"stop-propagation"]},[[2,"click","onMouseDown"]]]]]]'),e))));