@luscii-healthtech/web-ui 2.36.3 → 2.37.1

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.
@@ -2252,6 +2252,10 @@ video {
2252
2252
  z-index: 30;
2253
2253
  }
2254
2254
 
2255
+ .z-9999 {
2256
+ z-index: 9999;
2257
+ }
2258
+
2255
2259
  .transform {
2256
2260
  --transform-translate-x: 0;
2257
2261
  --transform-translate-y: 0;
@@ -714,7 +714,7 @@ var Toaster = function Toaster(_ref) {
714
714
  style: styleOverwrite,
715
715
  id: "application-toaster",
716
716
  "data-test-id": "toaster-panel-" + type,
717
- className: classNames("bg-white cursor-pointer", "rounded-md shadow-lg", "min-h-13 max-h-19 w-104 transition-transform", {
717
+ className: classNames("bg-white cursor-pointer", "rounded-md shadow-lg", "min-h-13 max-h-19 w-104 transition-transform", "z-9999", {
718
718
  shelved: !isVisible,
719
719
  expanded: isVisible,
720
720
  "type-success": isSuccess,