ods-component-lib 1.17.34 → 1.17.36

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.
@@ -595,8 +595,9 @@ function OdsPhoneInput(props) {
595
595
  enableSearch: props === null || props === void 0 ? void 0 : props.enableSearchField,
596
596
  value: props === null || props === void 0 ? void 0 : props.value,
597
597
  onChange: props === null || props === void 0 ? void 0 : props.onChange,
598
+ placeholder: props === null || props === void 0 ? void 0 : props.placeholder,
598
599
  inputProps: {
599
- required: true
600
+ required: props === null || props === void 0 ? void 0 : props.required
600
601
  }
601
602
  }));
602
603
  }
@@ -1220,6 +1221,7 @@ function grid(props, dataGridRef) {
1220
1221
  });
1221
1222
  });
1222
1223
  } else {
1224
+ debugger;
1223
1225
  var doc = new jsPDF();
1224
1226
  exportDataGrid$1({
1225
1227
  jsPDFDocument: doc,
@@ -1227,6 +1229,9 @@ function grid(props, dataGridRef) {
1227
1229
  indent: 5
1228
1230
  }).then(function () {
1229
1231
  doc.save(fileName + '.pdf');
1232
+ }).then(function () {
1233
+ e.component.columnOption('hiddenColumn', 'visible', false);
1234
+ e.component.endUpdate();
1230
1235
  });
1231
1236
  }
1232
1237
  };