ods-component-lib 1.17.39 → 1.17.41
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 +6 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +6 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -721,7 +721,12 @@ 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: '700px',
|
|
728
|
+
padding: '10px'
|
|
729
|
+
}
|
|
725
730
|
});
|
|
726
731
|
return null;
|
|
727
732
|
};
|
|
@@ -1225,7 +1230,6 @@ function grid(props, dataGridRef) {
|
|
|
1225
1230
|
});
|
|
1226
1231
|
});
|
|
1227
1232
|
} else {
|
|
1228
|
-
debugger;
|
|
1229
1233
|
var doc = new jsPDF();
|
|
1230
1234
|
pdf_exporter.exportDataGrid({
|
|
1231
1235
|
jsPDFDocument: doc,
|