ods-component-lib 1.13.2 → 1.13.3

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.
@@ -1195,7 +1195,11 @@ function grid(props) {
1195
1195
  className: "dx-datagrid-headers"
1196
1196
  }, colProperties.column.caption);
1197
1197
  };
1198
- return React.createElement(React.Fragment, null, React.createElement(DataGrid, {
1198
+ return React.createElement(React.Fragment, null, React.createElement("div", {
1199
+ style: {
1200
+ width: '100%'
1201
+ }
1202
+ }, React.createElement(DataGrid, {
1199
1203
  dataSource: props.dataSource,
1200
1204
  keyExpr: props.keyExpr,
1201
1205
  allowColumnResizing: true,
@@ -1207,8 +1211,7 @@ function grid(props) {
1207
1211
  allowColumnReordering: true,
1208
1212
  showRowLines: true,
1209
1213
  showBorders: true,
1210
- columnAutoWidth: true,
1211
- width: "100%",
1214
+ columnAutoWidth: false,
1212
1215
  onEditCanceling: props.onEditCanceling
1213
1216
  }, React.createElement(Paging, {
1214
1217
  enabled: true,
@@ -1323,7 +1326,7 @@ function grid(props) {
1323
1326
  name: "exportButton"
1324
1327
  }), React.createElement(Item$1, {
1325
1328
  menuItemRender: renderMenuItem
1326
- }))));
1329
+ })))));
1327
1330
  }
1328
1331
 
1329
1332
  var exportFormats$1 = ['xlsx', 'pdf'];