@mcurros2/microm 1.1.159-0 → 1.1.160-0
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.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +8 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -33821,10 +33821,13 @@ var $726hz = parcelRequire("726hz");
|
|
|
33821
33821
|
const $9987aca4488b336f$export$cfa3d1bdbe24a61 = {
|
|
33822
33822
|
addingRecords: "Adding records...",
|
|
33823
33823
|
confirmContent: "Do you wish to add the selected records?",
|
|
33824
|
-
showActions: false
|
|
33824
|
+
showActions: false,
|
|
33825
|
+
enableAdd: false,
|
|
33826
|
+
enableEdit: false,
|
|
33827
|
+
enableDelete: false
|
|
33825
33828
|
};
|
|
33826
33829
|
function $9987aca4488b336f$export$deb93aade685e98(props) {
|
|
33827
|
-
const { lookupEntity: lookupEntity, viewName: viewName, onOK: onOK, addingRecords: addingRecords, title: title, onCancel: onCancel, onActionFinished: onActionFinished, runOnOpen: runOnOpen, confirmContent: confirmContent, showActions: showActions } = (0, $b4te3$mantinecore.useComponentDefaultProps)('LookupFormAction', $9987aca4488b336f$export$cfa3d1bdbe24a61, props);
|
|
33830
|
+
const { lookupEntity: lookupEntity, viewName: viewName, onOK: onOK, addingRecords: addingRecords, title: title, onCancel: onCancel, onActionFinished: onActionFinished, runOnOpen: runOnOpen, confirmContent: confirmContent, showActions: showActions, enableAdd: enableAdd, enableEdit: enableEdit, enableDelete: enableDelete } = (0, $b4te3$mantinecore.useComponentDefaultProps)('LookupFormAction', $9987aca4488b336f$export$cfa3d1bdbe24a61, props);
|
|
33828
33831
|
const modal = (0, $k7qj2.useModal)();
|
|
33829
33832
|
const LookpIcon = lookupEntity.Icon ?? (0, $b4te3$tablericonsreact.IconBoxMultiple);
|
|
33830
33833
|
const labels = (0, $kjFvY.DataGridDefaultProps).labels;
|
|
@@ -33835,9 +33838,9 @@ function $9987aca4488b336f$export$deb93aade685e98(props) {
|
|
|
33835
33838
|
limit: "10000",
|
|
33836
33839
|
refreshOnInit: true,
|
|
33837
33840
|
selectionMode: 'multi',
|
|
33838
|
-
enableAdd:
|
|
33839
|
-
enableEdit:
|
|
33840
|
-
enableDelete:
|
|
33841
|
+
enableAdd: enableAdd,
|
|
33842
|
+
enableEdit: enableEdit,
|
|
33843
|
+
enableDelete: enableDelete,
|
|
33841
33844
|
parentKeys: lookupEntity.parentKeys,
|
|
33842
33845
|
showActions: showActions
|
|
33843
33846
|
},
|