magneto365.ui 2.65.4 → 2.65.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.
@@ -17,4 +17,8 @@ export interface IMobileDrawer {
17
17
  * this property blocks fn onClose from background
18
18
  */
19
19
  blockBackgroundClose?: boolean;
20
+ /**
21
+ * this property sets custom className in the background span
22
+ */
23
+ backgroundClassName?: string;
20
24
  }
@@ -27,6 +27,10 @@ export interface IModal {
27
27
  * this property blocks fn onClose from background
28
28
  */
29
29
  blockBackgroundClose?: boolean;
30
+ /**
31
+ * this property sets custom className in the background span
32
+ */
33
+ backgroundClassName?: string;
30
34
  }
31
35
  export interface IModalPortal {
32
36
  /**
@@ -19,4 +19,12 @@ export interface IModalResponsive {
19
19
  * this property sets customs styles for the mobile drawer
20
20
  */
21
21
  mobileDrawerClassName?: string;
22
+ /**
23
+ * this property sets custom className in the background span to modal
24
+ */
25
+ backgroundClassNameDesktop?: string;
26
+ /**
27
+ * this property sets custom className in the background span to drawer
28
+ */
29
+ backgroundClassNameMobile?: string;
22
30
  }