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.modern.js
CHANGED
|
@@ -717,7 +717,11 @@ var OdsNotification = function OdsNotification(props) {
|
|
|
717
717
|
message: props.title,
|
|
718
718
|
description: props.content,
|
|
719
719
|
type: props.type,
|
|
720
|
-
placement: props.placement
|
|
720
|
+
placement: props.placement,
|
|
721
|
+
style: {
|
|
722
|
+
width: 'auto',
|
|
723
|
+
maxWidth: '500px'
|
|
724
|
+
}
|
|
721
725
|
});
|
|
722
726
|
return null;
|
|
723
727
|
};
|
|
@@ -1221,7 +1225,6 @@ function grid(props, dataGridRef) {
|
|
|
1221
1225
|
});
|
|
1222
1226
|
});
|
|
1223
1227
|
} else {
|
|
1224
|
-
debugger;
|
|
1225
1228
|
var doc = new jsPDF();
|
|
1226
1229
|
exportDataGrid$1({
|
|
1227
1230
|
jsPDFDocument: doc,
|