magneto365.ui 2.69.0 → 2.70.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.
@@ -12,6 +12,10 @@ export interface IApplicationSummary {
12
12
  * this property closes the ui
13
13
  */
14
14
  onClose: () => void;
15
+ /**
16
+ * this property sets custom styles
17
+ */
18
+ className?: string;
15
19
  }
16
20
  export declare namespace IApplicationSummary {
17
21
  interface Section {
package/dist/esm/index.js CHANGED
@@ -6210,8 +6210,8 @@ var styles$Y = {"summary-modal":"mg_application_summary_summary-modal_17gu5"};
6210
6210
 
6211
6211
  var cx$v = classNames.bind(styles$Y);
6212
6212
  var Component$16 = function (_a) {
6213
- var children = _a.children, props = __rest(_a, ["children"]);
6214
- return (React.createElement(ModalResponsive, __assign({ modalClassName: cx$v('summary-modal'), mobileDrawerClassName: cx$v('summary-drawer') }, props), children));
6213
+ var children = _a.children, className = _a.className, props = __rest(_a, ["children", "className"]);
6214
+ return (React.createElement(ModalResponsive, __assign({ modalClassName: cx$v('summary-modal', className), mobileDrawerClassName: cx$v('summary-drawer') }, props), children));
6215
6215
  };
6216
6216
  var ApplicationSummary = Object.assign(Component$16, {
6217
6217
  Section: ApplicationSection,