ods-component-lib 1.17.64 → 1.17.66
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 +4 -3
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +4 -3
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1336,11 +1336,12 @@ function grid(props, dataGridRef) {
|
|
|
1336
1336
|
})), props.selectEnable && React__default.createElement(dataGrid.Selection, {
|
|
1337
1337
|
mode: "multiple",
|
|
1338
1338
|
deferred: true
|
|
1339
|
-
}), props.
|
|
1339
|
+
}), props.editEnable === true && React__default.createElement(dataGrid.Editing, {
|
|
1340
1340
|
mode: props.edit.mode,
|
|
1341
1341
|
allowUpdating: props.edit.allowUpdating,
|
|
1342
1342
|
allowDeleting: props.edit.allowDeleting,
|
|
1343
|
-
allowAdding: props.edit.allowAdding
|
|
1343
|
+
allowAdding: props.edit.allowAdding,
|
|
1344
|
+
useIcons: true
|
|
1344
1345
|
}), React__default.createElement(dataGrid.Scrolling, {
|
|
1345
1346
|
mode: props.scroll.mode,
|
|
1346
1347
|
showScrollbar: props.scroll.showScrollbar,
|
|
@@ -1398,7 +1399,7 @@ function grid(props, dataGridRef) {
|
|
|
1398
1399
|
gap: "4px",
|
|
1399
1400
|
alignSelf: "stretch"
|
|
1400
1401
|
}
|
|
1401
|
-
}, props.pageTitle)),
|
|
1402
|
+
}, props.pageTitle)), React__default.createElement(dataGrid.Item, {
|
|
1402
1403
|
location: "before"
|
|
1403
1404
|
}, React__default.createElement(OdsButton, {
|
|
1404
1405
|
type: "primary",
|