@topconsultnpm/sdkui-react 6.20.0-dev1.121 → 6.20.0-dev1.122
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.
|
@@ -263,7 +263,7 @@ export const WorkflowEndInstanceModal = ({ selectedInstances, onClose, onComplet
|
|
|
263
263
|
ShowAlert({
|
|
264
264
|
mode: 'success',
|
|
265
265
|
position: 'TOP_RIGHT',
|
|
266
|
-
title:
|
|
266
|
+
title: SDKUI_Localizator.WorkflowEndInstance,
|
|
267
267
|
message: `${selectedInstances.length} ${selectedInstances.length === 1 ? 'istanza terminata' : 'istanze terminate'} con successo`,
|
|
268
268
|
duration: 3000
|
|
269
269
|
});
|
|
@@ -277,9 +277,10 @@ export const WorkflowEndInstanceModal = ({ selectedInstances, onClose, onComplet
|
|
|
277
277
|
TMSpinner.hide();
|
|
278
278
|
}
|
|
279
279
|
};
|
|
280
|
-
const
|
|
281
|
-
|
|
282
|
-
|
|
280
|
+
const title = selectedInstances.length === 1
|
|
281
|
+
? `${SDKUI_Localizator.WorkflowEndInstance} (DID: ${selectedInstances[0].did})`
|
|
282
|
+
: `${SDKUI_Localizator.WorkflowEndInstance} (${selectedInstances.length} istanze)`;
|
|
283
|
+
return (_jsx(TMModal, { title: title, onClose: onClose, width: '600px', height: '270px', isModal: true, children: _jsxs(StyledModalBodyWrapper, { children: [_jsxs(StyledModalContentContainer, { children: [_jsx("div", { style: { fontWeight: 600, marginBottom: '8px' }, children: "Motivazione (obbligatorio):" }), _jsx(StyledTextArea, { "$isValid": !disable, value: commentValue, onChange: (e) => setCommentValue(e.target.value), placeholder: "Inserisci il motivo della terminazione...", maxLength: 200 }), _jsxs(CharacterCounter, { children: [commentValue.length, "/200"] })] }), _jsx(StyledModalFooter, { children: _jsx(TMButton, { btnStyle: 'advanced', showTooltip: false, icon: _jsx(IconStop, {}), caption: SDKUI_Localizator.WorkflowEndInstance, width: '150px', disabled: disable, onClick: () => !disable && endInstancesAsync(), advancedColor: TMColors.error }) })] }) }));
|
|
283
284
|
};
|
|
284
285
|
export const WorkFlowMoreInfoPopUp = ({ DID = 0, TID = 0, deviceType = DeviceType.DESKTOP, onClose, onCompleted }) => {
|
|
285
286
|
const [users, setUsers] = useState([]);
|