ods-component-lib 1.17.38 → 1.17.40
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/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +5 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -721,7 +721,11 @@ var OdsNotification = function OdsNotification(props) {
|
|
|
721
721
|
message: props.title,
|
|
722
722
|
description: props.content,
|
|
723
723
|
type: props.type,
|
|
724
|
-
placement: props.placement
|
|
724
|
+
placement: props.placement,
|
|
725
|
+
style: {
|
|
726
|
+
width: 'auto',
|
|
727
|
+
maxWidth: '500px'
|
|
728
|
+
}
|
|
725
729
|
});
|
|
726
730
|
return null;
|
|
727
731
|
};
|
|
@@ -1225,7 +1229,6 @@ function grid(props, dataGridRef) {
|
|
|
1225
1229
|
});
|
|
1226
1230
|
});
|
|
1227
1231
|
} else {
|
|
1228
|
-
debugger;
|
|
1229
1232
|
var doc = new jsPDF();
|
|
1230
1233
|
pdf_exporter.exportDataGrid({
|
|
1231
1234
|
jsPDFDocument: doc,
|