dh_ackergaul
vor 3 Tagen 5bbf43c1b146439ab882815c12ed6292f1d7b4df
manufacturer/_furnview/furnplan-web/node_modules/@dh-software/furnview-components/module/furnview-components.js
@@ -6154,8 +6154,6 @@
}
function reverseFactory(collection, useKeys) {
  var this$1$1 = this;
  var reversedSequence = makeSequence(collection);
  reversedSequence._iter = collection;
  reversedSequence.size = collection.size;
@@ -6195,7 +6193,9 @@
      var entry = step.value;
      return iteratorValue(
        type,
        useKeys ? entry[0] : reverse ? this$1$1.size - ++i : i++,
        // `__iterator` is an arrow function, so `this` is not the reversed
        // sequence here — read `reversedSequence.size` explicitly.
        useKeys ? entry[0] : reverse ? reversedSequence.size - ++i : i++,
        entry[1],
        step
      );
@@ -8142,7 +8142,7 @@
}
function set(collection, key, value) {
    if (typeof key === 'string' && isProtoKey(key)) {
    if (isProtoKey(key)) {
        return collection;
    }
    if (!isDataStructure(collection)) {
@@ -11064,7 +11064,7 @@
  return isIndexed(v) ? v.toList() : isKeyed(v) ? v.toMap() : v.toSet();
}
var version$2 = "5.1.5";
var version$2 = "5.1.6";
/* eslint-disable import/order */
@@ -161744,7 +161744,7 @@
      information1: "modal.ar.qrcode.information.one",
      information2: "modal.ar.qrcode.information.two",
      alternative: "modal.ar.alternative",
      open: "ar.button.open"
      open: "7222"
    };
  }
  show(dimmed = this.dimmed, fade = this.fade) {
@@ -161758,6 +161758,15 @@
      this.setLoading();
    }).catch(() => {
      this.setLoading();
    });
    CommunicationMessageService.preloadARModel();
  }
  onOpenClick(event) {
    return __async$14(this, null, function* () {
      if (yield CommunicationMessageService.startAR()) {
        event.preventDefault();
        event.stopPropagation();
      }
    });
  }
  firstUpdated(_changedProperties) {
@@ -161774,31 +161783,31 @@
    });
  }
  render() {
    var _a, _b, _c, _d, _e, _f, _g;
    var _a, _b, _c, _d, _e, _f;
    return super.build(x`
            <div class="content">
                <div class="additional-content">
                    <slot></slot>
                </div>
                <div class="ar-header">
                    <span>${(_a = this.modalTexts) == null ? void 0 : _a.heading}</span>
                </div>
                <div class="ar-information">
                    <span >${(_b = this.modalTexts) == null ? void 0 : _b.information}</span>
                </div>
                <div class="ar-qrcode-information only-mobile">
                    <span>${(_c = this.modalTexts) == null ? void 0 : _c.information2}</span>
                </div>
                <div class="ar-qrcode-information only-desktop">
                <div class="ar-qrcode-information">
                    <ul>
                        <li>${(_d = this.modalTexts) == null ? void 0 : _d.information1}</li>
                        <li>${(_e = this.modalTexts) == null ? void 0 : _e.information2}</li>
                        <li>${(_c = this.modalTexts) == null ? void 0 : _c.information1}</li>
                        <li>${(_d = this.modalTexts) == null ? void 0 : _d.information2}</li>
                    </ul>
                </div>
                <div class="qrCode-container only-desktop">
                <div class="qrCode-container">
                    <img id="qrCode" src="#"/>
                </div>
                <div class="ar-buttons">
                    <span class="only-desktop">${(_f = this.modalTexts) == null ? void 0 : _f.alternative}</span>
                    <a target="_blank" id="url" hre="#">
                        <fv-button class="bordered image-button">${(_g = this.modalTexts) == null ? void 0 : _g.open}
                    <span class="only-desktop">${(_e = this.modalTexts) == null ? void 0 : _e.alternative}</span>
                    <a target="_blank" id="url" href="#" @click=${(e) => this.onOpenClick(e)}>
                        <fv-button class="bordered image-button">${(_f = this.modalTexts) == null ? void 0 : _f.open}
                        </fv-button>
                    </a>
                </div>