ods-component-lib 1.17.116 → 1.17.119

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 CHANGED
@@ -1034,7 +1034,9 @@ function OdsCustomMultiSelect(props) {
1034
1034
  var _useState = React.useState(false),
1035
1035
  open = _useState[0],
1036
1036
  setOpen = _useState[1];
1037
- return React__default.createElement(React__default.Fragment, null, React__default.createElement(StyledSelect, Object.assign({}, props, {
1037
+ return React__default.createElement(React__default.Fragment, null, React__default.createElement(styled.ThemeProvider, {
1038
+ theme: lightTheme
1039
+ }, React__default.createElement(StyledSelect, Object.assign({}, props, {
1038
1040
  open: open,
1039
1041
  onDropdownVisibleChange: function onDropdownVisibleChange(visible) {
1040
1042
  return setOpen(visible);
@@ -1046,7 +1048,8 @@ function OdsCustomMultiSelect(props) {
1046
1048
  }
1047
1049
  }), React__default.createElement(antd.Space, {
1048
1050
  style: {
1049
- padding: '0 8px 4px'
1051
+ padding: '0 8px 4px',
1052
+ width: "100%"
1050
1053
  }
1051
1054
  }, React__default.createElement(OdsButton, {
1052
1055
  style: {
@@ -1058,7 +1061,7 @@ function OdsCustomMultiSelect(props) {
1058
1061
  }
1059
1062
  }, props.buttonLabel)));
1060
1063
  }
1061
- })));
1064
+ }))));
1062
1065
  }
1063
1066
 
1064
1067
  function OdsSelect(props) {
@@ -1369,7 +1372,6 @@ function grid(props, dataGridRef) {
1369
1372
  filterSyncEnabled: true,
1370
1373
  height: window.innerHeight - 164,
1371
1374
  repaintChangesOnly: true,
1372
- remoteOperations: props.remoteOperations !== undefined ? props.remoteOperations : false,
1373
1375
  ref: dataGridRef
1374
1376
  }, React__default.createElement(dataGrid.LoadPanel, {
1375
1377
  enabled: true
@@ -1535,13 +1537,6 @@ function grid(props, dataGridRef) {
1535
1537
  column: props.totalColumunName == undefined ? "Id" : props.totalColumunName,
1536
1538
  summaryType: "count",
1537
1539
  displayFormat: props.TotaDatalLanguage + " : {0} "
1538
- }), props.sumaryRowItems && props.sumaryRowItems.map(function (item) {
1539
- return React__default.createElement(dataGrid.TotalItem, {
1540
- column: item.columnName,
1541
- summaryType: item.aggregateFn,
1542
- valueFormat: item.valueFormat ? item.valueFormat : "",
1543
- displayFormat: props.TotalLanguage + " : {0}"
1544
- });
1545
1540
  })), React__default.createElement(dataGrid.StateStoring, {
1546
1541
  enabled: true,
1547
1542
  type: "custom",