ods-component-lib 1.13.12 → 1.13.14

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.
@@ -1584,7 +1584,7 @@ function grid$2(props) {
1584
1584
  mode: "multiple",
1585
1585
  deferred: true
1586
1586
  }), React.createElement(Scrolling, {
1587
- mode: 'virtual'
1587
+ mode: props.scrollingMode
1588
1588
  }), React.createElement(LoadPanel, {
1589
1589
  enabled: loadPanelEnabled
1590
1590
  }), props.editEnable === true && React.createElement(Editing, {
@@ -1599,7 +1599,7 @@ function grid$2(props) {
1599
1599
  width: 700,
1600
1600
  height: 300,
1601
1601
  showCloseButton: false
1602
- }), React.createElement(Form$1, null, props.formItems.map(function (formItem) {
1602
+ }), React.createElement(Form$1, null, props.formItems && props.formItems.map(function (formItem) {
1603
1603
  return React.createElement(Item, {
1604
1604
  itemType: formItem.itemType,
1605
1605
  colCount: formItem.colCount,