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.modern.js
CHANGED
|
@@ -1332,11 +1332,12 @@ function grid(props, dataGridRef) {
|
|
|
1332
1332
|
})), props.selectEnable && React.createElement(Selection, {
|
|
1333
1333
|
mode: "multiple",
|
|
1334
1334
|
deferred: true
|
|
1335
|
-
}), props.
|
|
1335
|
+
}), props.editEnable === true && React.createElement(Editing, {
|
|
1336
1336
|
mode: props.edit.mode,
|
|
1337
1337
|
allowUpdating: props.edit.allowUpdating,
|
|
1338
1338
|
allowDeleting: props.edit.allowDeleting,
|
|
1339
|
-
allowAdding: props.edit.allowAdding
|
|
1339
|
+
allowAdding: props.edit.allowAdding,
|
|
1340
|
+
useIcons: true
|
|
1340
1341
|
}), React.createElement(Scrolling, {
|
|
1341
1342
|
mode: props.scroll.mode,
|
|
1342
1343
|
showScrollbar: props.scroll.showScrollbar,
|
|
@@ -1394,7 +1395,7 @@ function grid(props, dataGridRef) {
|
|
|
1394
1395
|
gap: "4px",
|
|
1395
1396
|
alignSelf: "stretch"
|
|
1396
1397
|
}
|
|
1397
|
-
}, props.pageTitle)),
|
|
1398
|
+
}, props.pageTitle)), React.createElement(Item, {
|
|
1398
1399
|
location: "before"
|
|
1399
1400
|
}, React.createElement(OdsButton, {
|
|
1400
1401
|
type: "primary",
|