@topconsultnpm/sdkui-react-beta 6.16.32 → 6.16.34
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/lib/components/features/workflow/diagram/DiagramItemForm.js +111 -1
- package/lib/components/features/workflow/diagram/WorkitemRecipientsEditor.d.ts +1 -0
- package/lib/components/features/workflow/diagram/WorkitemRecipientsEditor.js +1 -1
- package/lib/helper/SDKUI_Localizator.d.ts +4 -0
- package/lib/helper/SDKUI_Localizator.js +40 -0
- package/package.json +2 -2
|
@@ -13,7 +13,7 @@ import TMQuerySummary from '../../../query/TMQuerySummary';
|
|
|
13
13
|
import { CultureIDs, DcmtTypeListCacheService, FromItem, MetadataDataDomains, SDK_Globals, SearchEngine, Severities, WFAppTypes, WorkItemSetRules } from '@topconsultnpm/sdk-ts-beta';
|
|
14
14
|
import TMLocalizedTextBox from '../../../editors/TMLocalizedTextBox';
|
|
15
15
|
import TMDataListItemPicker from '../../../choosers/TMDataListItemPicker';
|
|
16
|
-
import WorkitemRecipientsEditor, { actorsToTos, tosToActors } from './WorkitemRecipientsEditor';
|
|
16
|
+
import WorkitemRecipientsEditor, { actorsToTos, RecipientsContainer, tosToActors } from './WorkitemRecipientsEditor';
|
|
17
17
|
import TMDropDown from '../../../editors/TMDropDown';
|
|
18
18
|
import TMMetadataValues, { AdvancedMenuButtons, ShowCheckBoxesMode } from '../../../editors/TMMetadataValues';
|
|
19
19
|
import TMFormulaEditor, { FormulaDescriptor, FormulaHelper, FormulaTargets } from '../../../editors/TMFormulaEditor';
|
|
@@ -24,6 +24,7 @@ import TMPathChooser from '../../../choosers/TMPathChooser';
|
|
|
24
24
|
import TMTextExpression from '../../../editors/TMTextExpression';
|
|
25
25
|
import TMCultureIDPicker from '../../../choosers/TMCultureIDPicker';
|
|
26
26
|
import RecipientList, { WorkItemActorTypes } from './RecipientList';
|
|
27
|
+
import TMRadioButton from '../../../editors/TMRadioButton';
|
|
27
28
|
const FormContainer = styled.div `
|
|
28
29
|
display: flex;
|
|
29
30
|
flex-direction: column;
|
|
@@ -121,6 +122,11 @@ const DiagramItemForm = ({ itemToEdit, wf, onClose, onApply }) => {
|
|
|
121
122
|
width = '700px';
|
|
122
123
|
height = '700px';
|
|
123
124
|
break;
|
|
125
|
+
case DiagramItemTypes.WorkGroup_Create:
|
|
126
|
+
case DiagramItemTypes.CaseFlow_Create:
|
|
127
|
+
width = '700px';
|
|
128
|
+
height = '700px';
|
|
129
|
+
break;
|
|
124
130
|
default:
|
|
125
131
|
width = '50%';
|
|
126
132
|
height = '50%';
|
|
@@ -305,6 +311,48 @@ const DiagramItemForm = ({ itemToEdit, wf, onClose, onApply }) => {
|
|
|
305
311
|
FormatCultureID: newValue
|
|
306
312
|
}));
|
|
307
313
|
}, []);
|
|
314
|
+
const handlePlatformObjNameChange = useCallback((newValue) => {
|
|
315
|
+
setLocalItem(prevLocalItem => ({
|
|
316
|
+
...prevLocalItem,
|
|
317
|
+
PlatformObjName: newValue
|
|
318
|
+
}));
|
|
319
|
+
}, []);
|
|
320
|
+
const handlePlatformObjDescrChange = useCallback((newValue) => {
|
|
321
|
+
setLocalItem(prevLocalItem => ({
|
|
322
|
+
...prevLocalItem,
|
|
323
|
+
PlatformObjDescr: newValue
|
|
324
|
+
}));
|
|
325
|
+
}, []);
|
|
326
|
+
const handleValue1asStringChange = useCallback((newValue) => {
|
|
327
|
+
setLocalItem(prevLocalItem => ({
|
|
328
|
+
...prevLocalItem,
|
|
329
|
+
Value1asString: newValue
|
|
330
|
+
}));
|
|
331
|
+
}, []);
|
|
332
|
+
const handleValue1asIntChange = useCallback((newValue) => {
|
|
333
|
+
setLocalItem(prevLocalItem => ({
|
|
334
|
+
...prevLocalItem,
|
|
335
|
+
Value1asInt: newValue
|
|
336
|
+
}));
|
|
337
|
+
}, []);
|
|
338
|
+
const handleValue2asIntChange = useCallback((newValue) => {
|
|
339
|
+
setLocalItem(prevLocalItem => ({
|
|
340
|
+
...prevLocalItem,
|
|
341
|
+
Value2asInt: newValue
|
|
342
|
+
}));
|
|
343
|
+
}, []);
|
|
344
|
+
const handleTruncChange = useCallback((newValue) => {
|
|
345
|
+
setLocalItem(prevLocalItem => ({
|
|
346
|
+
...prevLocalItem,
|
|
347
|
+
Trunc: newValue
|
|
348
|
+
}));
|
|
349
|
+
}, []);
|
|
350
|
+
const handleTos2Change = useCallback((newTos) => {
|
|
351
|
+
setLocalItem(prevLocalItem => ({
|
|
352
|
+
...prevLocalItem,
|
|
353
|
+
Tos2: newTos
|
|
354
|
+
}));
|
|
355
|
+
}, []);
|
|
308
356
|
// Function to render common elements like the name textbox
|
|
309
357
|
const renderCommonFields = () => {
|
|
310
358
|
if (localItem.Type !== DiagramItemTypes.Start && localItem.Type !== DiagramItemTypes.End && localItem.Type !== DiagramItemTypes.Exit && localItem.Type !== DiagramItemTypes.Status) {
|
|
@@ -474,6 +522,61 @@ const DiagramItemForm = ({ itemToEdit, wf, onClose, onApply }) => {
|
|
|
474
522
|
}, [localItem]);
|
|
475
523
|
return (_jsxs(_Fragment, { children: [_jsx(TMTextExpression, { label: SDKUI_Localizator.Description, placeHolder: 'Inserire il testo della notifica...', rows: 3, value: localItem.Description, tid: wf?.MTID, isModifiedWhen: (localItem.Description ?? '') !== (localItemOrig.Description ?? ''), onValueChanged: (newValue) => handleLocalizedDescriptionChange(CultureIDs.None, newValue ?? ''), valueOrig: undefined }), _jsx(TMDropDown, { label: "Gravit\u00E0", dataSource: SEVERITY_DATASOURCE, value: localItem.Severity, isModifiedWhen: localItem.Severity !== localItemOrig.Severity, onValueChanged: (e) => setLocalItem(prevLocalItem => ({ ...prevLocalItem, Severity: e.target.value })) }), _jsx(TMCultureIDPicker, { label: SDKUI_Localizator.Format, selectedValue: localItem.FormatCultureID, isModifiedWhen: localItem.FormatCultureID !== localItemOrig.FormatCultureID, openChooserBySingleClick: true, onSelectCultureID: handleFormatCultureIDChange }), _jsx(TMCheckBox, { value: localItem.RegAsWfInstPart ?? 0, label: "Registra i destinatari della notifica come partecipanti dell'istanza di flusso", isModifiedWhen: localItem.RegAsWfInstPart !== localItemOrig.RegAsWfInstPart, onValueChanged: handleRegAsWfInstPartChange }), _jsx(RecipientList, { recipients: andRecipients, title: "Destinatari", tid: wf?.MTID, qd: qdForRecipientsEditor, onQDChange: (newQd) => newQd && handleQDChosen(newQd, 0), onAdd: (newRecipients) => handleAddRecipients(newRecipients, 0), onRemove: handleRemoveRecipient })] }));
|
|
476
524
|
};
|
|
525
|
+
const renderWorkGroupCreateFields = () => {
|
|
526
|
+
// Gestione di Tos e Tos2
|
|
527
|
+
const { andRecipients: tosRecipients } = useMemo(() => {
|
|
528
|
+
return tosToActors(localItem.Tos ?? '');
|
|
529
|
+
}, [localItem.Tos]);
|
|
530
|
+
const { andRecipients: tos2Recipients } = useMemo(() => {
|
|
531
|
+
return tosToActors(localItem.Tos2 ?? '');
|
|
532
|
+
}, [localItem.Tos2]);
|
|
533
|
+
const handleAddTosRecipients = useCallback((newRecipients, orValue) => {
|
|
534
|
+
const { andRecipients } = tosToActors(localItem.Tos ?? '');
|
|
535
|
+
const updatedRecipients = [...andRecipients, ...newRecipients.map(r => ({ ...r, Or: orValue }))];
|
|
536
|
+
const newTos = actorsToTos(updatedRecipients);
|
|
537
|
+
handleTosChange(newTos);
|
|
538
|
+
}, [localItem.Tos, handleTosChange]);
|
|
539
|
+
const handleRemoveTosRecipient = useCallback((recipientToRemove) => {
|
|
540
|
+
const { andRecipients } = tosToActors(localItem.Tos ?? '');
|
|
541
|
+
const updatedRecipients = andRecipients.filter(r => r.ActorType !== recipientToRemove.ActorType || r.ActorID !== recipientToRemove.ActorID);
|
|
542
|
+
const newTos = actorsToTos(updatedRecipients);
|
|
543
|
+
handleTosChange(newTos);
|
|
544
|
+
}, [localItem.Tos, handleTosChange]);
|
|
545
|
+
const handleAddTos2Recipients = useCallback((newRecipients, orValue) => {
|
|
546
|
+
const { andRecipients } = tosToActors(localItem.Tos2 ?? '');
|
|
547
|
+
const updatedRecipients = [...andRecipients, ...newRecipients.map(r => ({ ...r, Or: orValue }))];
|
|
548
|
+
const newTos = actorsToTos(updatedRecipients);
|
|
549
|
+
handleTos2Change(newTos);
|
|
550
|
+
}, [localItem.Tos2, handleTos2Change]);
|
|
551
|
+
const handleRemoveTos2Recipient = useCallback((recipientToRemove) => {
|
|
552
|
+
const { andRecipients } = tosToActors(localItem.Tos2 ?? '');
|
|
553
|
+
const updatedRecipients = andRecipients.filter(r => r.ActorType !== recipientToRemove.ActorType || r.ActorID !== recipientToRemove.ActorID);
|
|
554
|
+
const newTos = actorsToTos(updatedRecipients);
|
|
555
|
+
handleTos2Change(newTos);
|
|
556
|
+
}, [localItem.Tos2, handleTos2Change]);
|
|
557
|
+
return (_jsxs(_Fragment, { children: [_jsx(TMTextExpression, { label: `${SDKUI_Localizator.Name} (${SDKUI_Localizator.WorkGroup})`, value: localItem.PlatformObjName, valueOrig: localItemOrig.PlatformObjName, tid: wf?.MTID, isModifiedWhen: (localItem.PlatformObjName ?? '') !== (localItemOrig.PlatformObjName ?? ''), onValueChanged: handlePlatformObjNameChange }), _jsx(TMTextExpression, { label: `${SDKUI_Localizator.Description} (${SDKUI_Localizator.WorkGroup})`, value: localItem.PlatformObjDescr, valueOrig: localItemOrig.PlatformObjDescr, tid: wf?.MTID, isModifiedWhen: (localItem.PlatformObjDescr ?? '') !== (localItemOrig.PlatformObjDescr ?? ''), onValueChanged: handlePlatformObjDescrChange }), _jsx(TMCultureIDPicker, { label: SDKUI_Localizator.Format, selectedValue: localItem.FormatCultureID, isModifiedWhen: localItem.FormatCultureID !== localItemOrig.FormatCultureID, openChooserBySingleClick: true, onSelectCultureID: handleFormatCultureIDChange }), _jsx(TMTextExpression, { label: `${SDKUI_Localizator.CommentText} (${SDKUI_Localizator.BlogCase})`, placeHolder: 'Inserisci il valore', rows: 2, value: localItem.Value1asString, valueOrig: localItemOrig.Value1asString, tid: wf?.MTID, isModifiedWhen: (localItem.Value1asString ?? '') !== (localItemOrig.Value1asString ?? ''), onValueChanged: handleValue1asStringChange }), _jsx(TMCheckBox, { value: localItem.Value1asInt ?? 0, label: SDKUI_Localizator.WorkflowAddDraftToWg, isModifiedWhen: localItem.Value1asInt !== localItemOrig.Value1asInt, onValueChanged: handleValue1asIntChange }), _jsx(TMCheckBox, { value: localItem.Value2asInt ?? 0, label: SDKUI_Localizator.WorkflowAddDcmtToWg, isModifiedWhen: localItem.Value2asInt !== localItemOrig.Value2asInt, onValueChanged: handleValue2asIntChange }), _jsx(TMCheckBox, { value: localItem.Trunc ?? 0, label: SDKUI_Localizator.TruncateString, isModifiedWhen: localItem.Trunc !== localItemOrig.Trunc, onValueChanged: handleTruncChange }), _jsxs(RecipientsContainer, { children: [_jsx(RecipientList, { recipients: tosRecipients, title: SDKUI_Localizator.OwnerName, tid: wf?.MTID, onAdd: (newRecipients) => handleAddTosRecipients(newRecipients, 0), onRemove: handleRemoveTosRecipient }), _jsx(RecipientList, { recipients: tos2Recipients, title: SDKUI_Localizator.Participants, tid: wf?.MTID, onAdd: (newRecipients) => handleAddTos2Recipients(newRecipients, 0), onRemove: handleRemoveTos2Recipient })] })] }));
|
|
558
|
+
};
|
|
559
|
+
const renderWorkGroupAddPartsFields = () => {
|
|
560
|
+
const { andRecipients: tosRecipients } = useMemo(() => {
|
|
561
|
+
return tosToActors(localItem.Tos ?? '');
|
|
562
|
+
}, [localItem.Tos]);
|
|
563
|
+
const handleAddTosRecipients = useCallback((newRecipients, orValue) => {
|
|
564
|
+
const { andRecipients } = tosToActors(localItem.Tos ?? '');
|
|
565
|
+
const updatedRecipients = [...andRecipients, ...newRecipients.map(r => ({ ...r, Or: orValue }))];
|
|
566
|
+
const newTos = actorsToTos(updatedRecipients);
|
|
567
|
+
handleTosChange(newTos);
|
|
568
|
+
}, [localItem.Tos, handleTosChange]);
|
|
569
|
+
const handleRemoveTosRecipient = useCallback((recipientToRemove) => {
|
|
570
|
+
const { andRecipients } = tosToActors(localItem.Tos ?? '');
|
|
571
|
+
const updatedRecipients = andRecipients.filter(r => r.ActorType !== recipientToRemove.ActorType || r.ActorID !== recipientToRemove.ActorID);
|
|
572
|
+
const newTos = actorsToTos(updatedRecipients);
|
|
573
|
+
handleTosChange(newTos);
|
|
574
|
+
}, [localItem.Tos, handleTosChange]);
|
|
575
|
+
return (_jsxs(_Fragment, { children: [_jsx(TMTextExpression, { label: `${SDKUI_Localizator.Name} (${localItem.Type === DiagramItemTypes.CaseFlow_AddParts ? SDKUI_Localizator.Practice : SDKUI_Localizator.WorkGroup})`, value: localItem.PlatformObjName, valueOrig: localItemOrig.PlatformObjName, tid: wf?.MTID, isModifiedWhen: (localItem.PlatformObjName ?? '') !== (localItemOrig.PlatformObjName ?? ''), onValueChanged: handlePlatformObjNameChange }), _jsx(TMCultureIDPicker, { label: SDKUI_Localizator.Format, selectedValue: localItem.FormatCultureID, isModifiedWhen: localItem.FormatCultureID !== localItemOrig.FormatCultureID, openChooserBySingleClick: true, onSelectCultureID: handleFormatCultureIDChange }), _jsx(TMCheckBox, { value: localItem.Trunc ?? 0, label: SDKUI_Localizator.TruncateString, isModifiedWhen: localItem.Trunc !== localItemOrig.Trunc, onValueChanged: handleTruncChange }), _jsx(TMRadioButton, { label: 'Tipo operazione', dataSource: [
|
|
576
|
+
{ value: 1, display: SDKUI_Localizator.Add },
|
|
577
|
+
{ value: 0, display: SDKUI_Localizator.Remove },
|
|
578
|
+
], value: localItem.Value1asInt, isModifiedWhen: localItem.Value1asInt !== localItemOrig.Value1asInt, onValueChanged: handleValue1asIntChange }), _jsx(RecipientList, { recipients: tosRecipients, title: SDKUI_Localizator.OwnerName, tid: wf?.MTID, onAdd: (newRecipients) => handleAddTosRecipients(newRecipients, 0), onRemove: handleRemoveTosRecipient })] }));
|
|
579
|
+
};
|
|
477
580
|
const renderForm = () => {
|
|
478
581
|
let specificFields;
|
|
479
582
|
switch (localItem.Type) {
|
|
@@ -506,6 +609,13 @@ const DiagramItemForm = ({ itemToEdit, wf, onClose, onApply }) => {
|
|
|
506
609
|
case DiagramItemTypes.Notification:
|
|
507
610
|
specificFields = renderNotificationFields();
|
|
508
611
|
break;
|
|
612
|
+
case DiagramItemTypes.WorkGroup_Create:
|
|
613
|
+
specificFields = renderWorkGroupCreateFields();
|
|
614
|
+
break;
|
|
615
|
+
case DiagramItemTypes.CaseFlow_AddParts:
|
|
616
|
+
case DiagramItemTypes.WorkGroup_AddParts:
|
|
617
|
+
specificFields = renderWorkGroupAddPartsFields();
|
|
618
|
+
break;
|
|
509
619
|
default:
|
|
510
620
|
specificFields = null;
|
|
511
621
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { QueryDescriptor } from '@topconsultnpm/sdk-ts-beta';
|
|
3
3
|
import { WorkItemActor } from './RecipientList';
|
|
4
|
+
export declare const RecipientsContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
4
5
|
export declare const tosToActors: (tosString: string) => {
|
|
5
6
|
andRecipients: WorkItemActor[];
|
|
6
7
|
orRecipients: WorkItemActor[];
|
|
@@ -2,7 +2,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
2
2
|
import { useCallback, useEffect, useMemo, useState } from 'react';
|
|
3
3
|
import styled from 'styled-components';
|
|
4
4
|
import RecipientList, { WorkItemActorTypes } from './RecipientList';
|
|
5
|
-
const RecipientsContainer = styled.div `
|
|
5
|
+
export const RecipientsContainer = styled.div `
|
|
6
6
|
display: flex;
|
|
7
7
|
gap: 20px;
|
|
8
8
|
flex-wrap: wrap;
|
|
@@ -352,6 +352,7 @@ export declare class SDKUI_Localizator {
|
|
|
352
352
|
static get ParametricFilterTypes_ByUserID(): "Filtern nach {@UserID}" | "Filter on {@UserID}" | "Filtro en {@UserID}" | "Filtre sur {@UserID}" | "Filtre on {@UserID}" | "Filtro su {@UserID}";
|
|
353
353
|
static get ParametricFilterTypes_ByUserName(): "Filtern nach {@Benutzername} (=)" | "Filter on {@UserName} (=)" | "Filtro en {@UserName} (=)" | "Filtre sur {@UserName} (=)" | "Filtre on {@UserName} (=)" | "Filtro su {@UserName} (=)";
|
|
354
354
|
static get ParametricFilterTypes_ByUserNameC(): "Filter nach {@Benutzername} (Enthält)" | "Filter on {@UserName} (Contains)" | "Filtro en {@UserName} (Contiene)" | "Filtre sur {@UserName} (Contient)" | "Filtre on {@UserName} (Contém)" | "Filtro su {@UserName} (Contiene)";
|
|
355
|
+
static get Participants(): "Teilnehmer" | "Participants" | "Participantes" | "Partecipanti";
|
|
355
356
|
static get Password(): "Passwort" | "Password" | "Contraseña" | "Mot de passe" | "Senha";
|
|
356
357
|
static get PasswordMustContain(): "Das Passwort muss enthalten" | "The password must contain" | "La contraseña debe contener" | "Le mot de passe doit contenir" | "A palavra-passe deve conter" | "La password deve contenere";
|
|
357
358
|
static get PasswordChangedSuccessfully(): "Das Passwort wurde erfolgreich geändert." | "Password changed successfully." | "Contraseña cambiada con éxito." | "Le mot de passe a été changé avec succès." | "Senha alterada com sucesso." | "Password cambiata con successo.";
|
|
@@ -498,6 +499,7 @@ export declare class SDKUI_Localizator {
|
|
|
498
499
|
static get Tracing(): "Trassierung" | "Tracing" | "Trazado" | "Marquage" | "Marcação" | "Tracciatura";
|
|
499
500
|
static get TreesNoAvailable(): "Keine Bäume vorhanden" | "No trees available" | "No hay árboles disponibles" | "Aucun arbre disponible" | "Não há árvores disponíveis" | "Nessun albero disponibile";
|
|
500
501
|
static get TreeRemoveDefault(): "Standardbaum entfernen" | "Remove default tree" | "Eliminar árbol predeterminado" | "Supprimer l'arbre par défaut" | "Remover árvore padrão" | "Rimuovi albero predefinito";
|
|
502
|
+
static get TruncateString(): "Überschüssigen Text abschneiden" | "Truncate the excess text" | "Cortar el texto sobrante" | "Tronquer le texte en excès" | "Truncar o texto em excesso" | "Troncare il testo in eccesso";
|
|
501
503
|
static get UBLViewFormats_ER_HTML(): "ER Style Sheet (HTML)" | "Hoja de estilo ER (HTML)" | "Feuille de style ER (HTML)" | "Folha de estilo ER (HTML)" | "Foglio di stile ER (HTML)";
|
|
502
504
|
static get UBLViewFormats_ER_PDF(): "ER Style Sheet (PDF)" | "Hoja de estilo ER (PDF)" | "Feuille de style ER (PDF)" | "Folha de estilo ER (PDF)" | "Foglio di stile ER (PDF)";
|
|
503
505
|
static get UBLViewFormats_NSO_HTML(): "NSO Style Sheet (HTML)" | "Hoja de estilo NSO (HTML)" | "Feuille de style NSO (HTML)" | "Folha de estilo NSO (HTML)" | "Foglio di stile NSO (HTML)";
|
|
@@ -541,6 +543,8 @@ export declare class SDKUI_Localizator {
|
|
|
541
543
|
static get Welcome(): "Willkommen" | "Welcome" | "Bienvenido" | "Bienvenue" | "Bem-vindo" | "Benvenuto";
|
|
542
544
|
static get WelcomeTo(): "Willkommen bei {{0}}" | "Welcome to {{0}}" | "Bienvenido a {{0}}" | "Bienvenue sur {{0}}" | "Bem-vindo à {{0}}" | "Benvenuto su {{0}}";
|
|
543
545
|
static get WhatWouldYouLikeToArchive(): "Was möchten Sie archivieren?" | "What would you like to archive?" | "¿Qué te gustaría archivar?" | "Que souhaitez-vous archiver?" | "O que gostaria de arquivar?" | "Cosa vorresti archiviare?";
|
|
546
|
+
static get WorkflowAddDcmtToWg(): "Hinzufügen des Dokuments zu Arbeitsgruppendokumenten" | "Add the document to the workgroup documents" | "Añadir el documento a los documentos del grupo de trabajo" | "Ajouter le document aux documents du groupe de travail" | "Adicione o documento aos documentos do grupo de trabalho" | "Aggiungere il documento ai documenti del gruppo di lavoro";
|
|
547
|
+
static get WorkflowAddDraftToWg(): "Hinzufügen des Dokuments zu Arbeitsgruppenentwürfen" | "Add the document to the workgroup drafts" | "Añadir el documento a los borradores del grupo de trabajo" | "Ajouter le document au brouillon du groupe de travail" | "Adicione o documento ao rascunho do grupo de trabalho" | "Aggiungere il documento alle bozze del gruppo di lavoro";
|
|
544
548
|
static get WorkflowAllowZeroTos(): "0 Empfänger zulassen" | "Allow 0 recipients" | "Permitir 0 destinatarios" | "Autoriser 0 destinataires" | "Permitir 0 destinatários" | "Consenti 0 destinatari";
|
|
545
549
|
static get WorkflowApproval(): "Workflow-Genehmigung" | "Workflow approval" | "Aprobación de flujo de trabajo" | "Approbation de workflow" | "Aprovação de fluxo de trabalho" | "Approvazione workflow";
|
|
546
550
|
static get WorkflowAppName(): "Name der Anwendung" | "Application name" | "Nombre de aplicación" | "Nom de l'application" | "Nome da aplicação" | "Nome applicazione";
|
|
@@ -3477,6 +3477,16 @@ export class SDKUI_Localizator {
|
|
|
3477
3477
|
default: return "Filtro su {@UserName} (Contiene)";
|
|
3478
3478
|
}
|
|
3479
3479
|
}
|
|
3480
|
+
static get Participants() {
|
|
3481
|
+
switch (this._cultureID) {
|
|
3482
|
+
case CultureIDs.De_DE: return "Teilnehmer";
|
|
3483
|
+
case CultureIDs.En_US: return "Participants";
|
|
3484
|
+
case CultureIDs.Es_ES: return "Participantes";
|
|
3485
|
+
case CultureIDs.Fr_FR: return "Participants";
|
|
3486
|
+
case CultureIDs.Pt_PT: return "Participantes";
|
|
3487
|
+
default: return "Partecipanti";
|
|
3488
|
+
}
|
|
3489
|
+
}
|
|
3480
3490
|
static get Password() {
|
|
3481
3491
|
switch (this._cultureID) {
|
|
3482
3492
|
case CultureIDs.De_DE: return "Passwort";
|
|
@@ -4945,6 +4955,16 @@ export class SDKUI_Localizator {
|
|
|
4945
4955
|
default: return "Rimuovi albero predefinito";
|
|
4946
4956
|
}
|
|
4947
4957
|
}
|
|
4958
|
+
static get TruncateString() {
|
|
4959
|
+
switch (this._cultureID) {
|
|
4960
|
+
case CultureIDs.De_DE: return "Überschüssigen Text abschneiden";
|
|
4961
|
+
case CultureIDs.En_US: return "Truncate the excess text";
|
|
4962
|
+
case CultureIDs.Es_ES: return "Cortar el texto sobrante";
|
|
4963
|
+
case CultureIDs.Fr_FR: return "Tronquer le texte en excès";
|
|
4964
|
+
case CultureIDs.Pt_PT: return "Truncar o texto em excesso";
|
|
4965
|
+
default: return "Troncare il testo in eccesso";
|
|
4966
|
+
}
|
|
4967
|
+
}
|
|
4948
4968
|
static get UBLViewFormats_ER_HTML() {
|
|
4949
4969
|
switch (this._cultureID) {
|
|
4950
4970
|
case CultureIDs.De_DE: return "ER Style Sheet (HTML)";
|
|
@@ -5375,6 +5395,26 @@ export class SDKUI_Localizator {
|
|
|
5375
5395
|
default: return "Cosa vorresti archiviare?";
|
|
5376
5396
|
}
|
|
5377
5397
|
}
|
|
5398
|
+
static get WorkflowAddDcmtToWg() {
|
|
5399
|
+
switch (this._cultureID) {
|
|
5400
|
+
case CultureIDs.De_DE: return "Hinzufügen des Dokuments zu Arbeitsgruppendokumenten";
|
|
5401
|
+
case CultureIDs.En_US: return "Add the document to the workgroup documents";
|
|
5402
|
+
case CultureIDs.Es_ES: return "Añadir el documento a los documentos del grupo de trabajo";
|
|
5403
|
+
case CultureIDs.Fr_FR: return "Ajouter le document aux documents du groupe de travail";
|
|
5404
|
+
case CultureIDs.Pt_PT: return "Adicione o documento aos documentos do grupo de trabalho";
|
|
5405
|
+
default: return "Aggiungere il documento ai documenti del gruppo di lavoro";
|
|
5406
|
+
}
|
|
5407
|
+
}
|
|
5408
|
+
static get WorkflowAddDraftToWg() {
|
|
5409
|
+
switch (this._cultureID) {
|
|
5410
|
+
case CultureIDs.De_DE: return "Hinzufügen des Dokuments zu Arbeitsgruppenentwürfen";
|
|
5411
|
+
case CultureIDs.En_US: return "Add the document to the workgroup drafts";
|
|
5412
|
+
case CultureIDs.Es_ES: return "Añadir el documento a los borradores del grupo de trabajo";
|
|
5413
|
+
case CultureIDs.Fr_FR: return "Ajouter le document au brouillon du groupe de travail";
|
|
5414
|
+
case CultureIDs.Pt_PT: return "Adicione o documento ao rascunho do grupo de trabalho";
|
|
5415
|
+
default: return "Aggiungere il documento alle bozze del gruppo di lavoro";
|
|
5416
|
+
}
|
|
5417
|
+
}
|
|
5378
5418
|
static get WorkflowAllowZeroTos() {
|
|
5379
5419
|
switch (this._cultureID) {
|
|
5380
5420
|
case CultureIDs.De_DE: return "0 Empfänger zulassen";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@topconsultnpm/sdkui-react-beta",
|
|
3
|
-
"version": "6.16.
|
|
3
|
+
"version": "6.16.34",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"lib"
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@topconsultnpm/sdk-ts-beta": "6.16.
|
|
42
|
+
"@topconsultnpm/sdk-ts-beta": "6.16.6",
|
|
43
43
|
"buffer": "^6.0.3",
|
|
44
44
|
"devextreme": "25.1.4",
|
|
45
45
|
"devextreme-react": "25.1.4",
|