magneto365.ui 2.71.0 → 2.72.0
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.
- package/dist/cjs/index.js +4 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/molecules/Drawer/Drawer.interface.d.ts +4 -0
- package/dist/esm/index.js +4 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/molecules/Drawer/Drawer.interface.d.ts +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
|
@@ -42,6 +42,10 @@ export interface IDrawer {
|
|
|
42
42
|
* this property blocks fn onClose from background
|
|
43
43
|
*/
|
|
44
44
|
blockBackgroundClose?: boolean;
|
|
45
|
+
/**
|
|
46
|
+
* this property sets custom styles into background drawer
|
|
47
|
+
*/
|
|
48
|
+
backGroundClassName?: string;
|
|
45
49
|
}
|
|
46
50
|
/**
|
|
47
51
|
* This interface represents a Portal for the Drawer component.
|
package/dist/index.d.ts
CHANGED
|
@@ -2084,6 +2084,10 @@ interface IDrawer {
|
|
|
2084
2084
|
* this property blocks fn onClose from background
|
|
2085
2085
|
*/
|
|
2086
2086
|
blockBackgroundClose?: boolean;
|
|
2087
|
+
/**
|
|
2088
|
+
* this property sets custom styles into background drawer
|
|
2089
|
+
*/
|
|
2090
|
+
backGroundClassName?: string;
|
|
2087
2091
|
}
|
|
2088
2092
|
/**
|
|
2089
2093
|
* This interface represents a Portal for the Drawer component.
|
package/package.json
CHANGED