feat: Add support for inbound "calls" from triggers (#2500)

This commit is contained in:
Dermot Duffy
2026-06-30 17:45:13 -07:00
committed by dermotduffy
parent f4c686c298
commit 15e335a647
39 changed files with 2915 additions and 133 deletions
+2 -1
View File
@@ -78,7 +78,6 @@ export class AdvancedCameraCardCarousel extends LitElement {
const destroyProperties = [
'direction',
'dragEnabled',
'dragFree',
'loop',
'plugins',
@@ -87,6 +86,8 @@ export class AdvancedCameraCardCarousel extends LitElement {
if (destroyProperties.some((prop) => changedProps.has(prop))) {
this._carousel?.destroy();
this._carousel = null;
} else if (changedProps.has('dragEnabled') && this._carousel) {
this._carousel.setDragEnabled(this.dragEnabled);
}
}