@topconsultnpm/sdkui-react 6.22.0-dev2.38 → 6.22.0-dev2.39
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.
|
@@ -160,7 +160,7 @@ const TMMultiMasterDetailDcmtsForm = (props) => {
|
|
|
160
160
|
const contextMenuItems = useMemo(() => [
|
|
161
161
|
{ name: SDKUI_Localizator.Update, icon: _jsx(IconEdit, { fontSize: 18, color: TMColors.primary }), operationType: 'singleRow', onClick: (id) => openEditForm(archiveRows.find(r => r.id === id)) },
|
|
162
162
|
{ name: SDKUI_Localizator.Duplicate, icon: _jsx(IconDuplicate, { fontSize: 18, color: TMColors.tertiary }), operationType: 'singleRow', onClick: (id) => duplicateRow(archiveRows.find(r => r.id === id)) },
|
|
163
|
-
{ name: SDKUI_Localizator.
|
|
163
|
+
{ name: SDKUI_Localizator.Remove, icon: _jsx(IconDelete, { fontSize: 18, color: TMColors.error }), operationType: 'singleRow', beginGroup: true, onClick: (id) => deleteRow(archiveRows.find(r => r.id === id)) },
|
|
164
164
|
toggleGridSearchItem,
|
|
165
165
|
], [archiveRows, showGridSearch]);
|
|
166
166
|
// Menu delle opzioni del modale, aperto dal pulsante a tre punti nella barra del titolo.
|