@weldsuite/helpdesk-widget-sdk 1.0.4 → 1.0.5

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.
@@ -643,7 +643,7 @@ class IframeManager {
643
643
  }
644
644
  }
645
645
  else {
646
- // Desktop: positioned widget
646
+ // Desktop: positioned widget - apply border and shadow to container
647
647
  container.style.cssText = `
648
648
  position: fixed;
649
649
  bottom: ${widget.position.bottom};
@@ -656,7 +656,9 @@ class IframeManager {
656
656
  display: none;
657
657
  border-radius: 16px;
658
658
  overflow: hidden;
659
- background: transparent;
659
+ background: #ffffff;
660
+ border: 1px solid rgba(0, 0, 0, 0.1);
661
+ box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
660
662
  `;
661
663
  }
662
664
  // Create iframe
@@ -2075,7 +2077,7 @@ class StateCoordinator {
2075
2077
  }
2076
2078
  }
2077
2079
 
2078
- var version = "1.0.4";
2080
+ var version = "1.0.5";
2079
2081
  var packageJson = {
2080
2082
  version: version};
2081
2083