From 5bbf43c1b146439ab882815c12ed6292f1d7b4df Mon Sep 17 00:00:00 2001
From: dh_ackergaul <dh_ackergaul@dh-software.de>
Date: Di, 23 Jun 2026 09:44:49 +0200
Subject: [PATCH] Update _furnview - 23.6.2026, 09:44:32 [LL]
---
manufacturer/_furnview/furnplan-web/node_modules/@dh-software/furnview-components/module/furnview-components.js | 43 ++++++++++++++++++++++++++-----------------
1 files changed, 26 insertions(+), 17 deletions(-)
diff --git a/manufacturer/_furnview/furnplan-web/node_modules/@dh-software/furnview-components/module/furnview-components.js b/manufacturer/_furnview/furnplan-web/node_modules/@dh-software/furnview-components/module/furnview-components.js
index e0c6751..d91e951 100644
--- a/manufacturer/_furnview/furnplan-web/node_modules/@dh-software/furnview-components/module/furnview-components.js
+++ b/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>
--
Gitblit v1.9.3