magneto365.ui 2.65.4 → 2.65.6

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
  }
@@ -1 +1 @@
1
- export declare const numberToCurrency: (currency: number) => string;
1
+ export declare const numberToCurrency: (currency: number, withSymbol?: boolean) => string;
package/dist/index.d.ts CHANGED
@@ -2836,6 +2836,10 @@ interface IMobileDrawer {
2836
2836
  * this property blocks fn onClose from background
2837
2837
  */
2838
2838
  blockBackgroundClose?: boolean;
2839
+ /**
2840
+ * this property sets custom className in the background span
2841
+ */
2842
+ backgroundClassName?: string;
2839
2843
  }
2840
2844
 
2841
2845
  /**
@@ -2915,6 +2919,10 @@ interface IModal {
2915
2919
  * this property blocks fn onClose from background
2916
2920
  */
2917
2921
  blockBackgroundClose?: boolean;
2922
+ /**
2923
+ * this property sets custom className in the background span
2924
+ */
2925
+ backgroundClassName?: string;
2918
2926
  }
2919
2927
  declare type IModalTitle = React.HTMLAttributes<HTMLHeadingElement>;
2920
2928
  declare type IModalDescription = React.HTMLAttributes<HTMLParagraphElement>;
@@ -2945,6 +2953,14 @@ interface IModalResponsive {
2945
2953
  * this property sets customs styles for the mobile drawer
2946
2954
  */
2947
2955
  mobileDrawerClassName?: string;
2956
+ /**
2957
+ * this property sets custom className in the background span to modal
2958
+ */
2959
+ backgroundClassNameDesktop?: string;
2960
+ /**
2961
+ * this property sets custom className in the background span to drawer
2962
+ */
2963
+ backgroundClassNameMobile?: string;
2948
2964
  }
2949
2965
 
2950
2966
  declare const ModalResponsive: React$1.FC<IModalResponsive>;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "type": "git",
5
5
  "url": "https://github.com/W170/talenta.magneto365.ui.git"
6
6
  },
7
- "version": "2.65.4",
7
+ "version": "2.65.6",
8
8
  "description": "Magneto365 UI common components",
9
9
  "scripts": {
10
10
  "lint": "eslint ./src --ext .js,.ts,.jsx,.tsx",