@topconsultnpm/sdkui-react-beta 6.16.23 → 6.16.24
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/editors/TMLocalizedTextBox.d.ts +1 -0
- package/lib/components/editors/TMLocalizedTextBox.js +1 -1
- package/lib/components/features/workflow/diagram/DiagramItemForm.js +67 -5
- package/lib/components/features/workflow/diagram/interfaces.d.ts +3 -3
- package/lib/components/forms/TMChooserForm.js +2 -2
- package/lib/helper/SDKUI_Localizator.d.ts +4 -0
- package/lib/helper/SDKUI_Localizator.js +40 -0
- package/package.json +2 -2
|
@@ -47,7 +47,7 @@ const IconContainer = styled.div `
|
|
|
47
47
|
align-items: center;
|
|
48
48
|
`;
|
|
49
49
|
// Helper function to get image path
|
|
50
|
-
const getCultureIDImg = (cultureID) => {
|
|
50
|
+
export const getCultureIDImg = (cultureID) => {
|
|
51
51
|
switch (cultureID) {
|
|
52
52
|
case CultureIDs.En_US: return en;
|
|
53
53
|
case CultureIDs.De_DE: return de;
|
|
@@ -3,14 +3,15 @@ import { useCallback, useEffect, useMemo, useState } from 'react'; // Importa us
|
|
|
3
3
|
import TMModal from '../../../base/TMModal';
|
|
4
4
|
import { DiagramItemTypes } from './interfaces';
|
|
5
5
|
import TMCheckBox from '../../../editors/TMCheckBox';
|
|
6
|
-
import { calcIsModified, getSystemMetadata, IconUndo, SDKUI_Localizator } from '../../../../helper';
|
|
6
|
+
import { calcIsModified, getSystemMetadata, IconApply, IconUndo, SDKUI_Localizator } from '../../../../helper';
|
|
7
7
|
import TMMetadataChooser from '../../../choosers/TMMetadataChooser';
|
|
8
8
|
import { FormModes, MetadataValueDescriptorEx } from '../../../../ts';
|
|
9
|
+
import TMTextBox from '../../../editors/TMTextBox';
|
|
9
10
|
import TMButton from '../../../base/TMButton';
|
|
10
11
|
import styled from 'styled-components';
|
|
11
12
|
import TMQuerySummary from '../../../query/TMQuerySummary';
|
|
12
|
-
import { CultureIDs, DcmtTypeListCacheService, FromItem, MetadataDataDomains, SDK_Globals, SearchEngine, WorkItemSetRules } from '@topconsultnpm/sdk-ts-beta';
|
|
13
|
-
import TMLocalizedTextBox from '../../../editors/TMLocalizedTextBox';
|
|
13
|
+
import { CultureIDs, DcmtTypeListCacheService, FromItem, MetadataDataDomains, SDK_Globals, SearchEngine, WFAppTypes, WorkItemSetRules } from '@topconsultnpm/sdk-ts-beta';
|
|
14
|
+
import TMLocalizedTextBox, { getCultureIDImg } from '../../../editors/TMLocalizedTextBox';
|
|
14
15
|
import TMDataListItemPicker from '../../../choosers/TMDataListItemPicker';
|
|
15
16
|
import WorkitemRecipientsEditor from './WorkitemRecipientsEditor';
|
|
16
17
|
import TMDropDown from '../../../editors/TMDropDown';
|
|
@@ -18,6 +19,7 @@ import TMMetadataValues, { AdvancedMenuButtons, ShowCheckBoxesMode } from '../..
|
|
|
18
19
|
import TMFormulaEditor, { FormulaDescriptor, FormulaHelper, FormulaTargets } from '../../../editors/TMFormulaEditor';
|
|
19
20
|
import TMDistinctValues from '../../../choosers/TMDistinctValues';
|
|
20
21
|
import TMTidViewer from '../../../viewers/TMTidViewer';
|
|
22
|
+
import { TMColors } from '../../../../utils/theme';
|
|
21
23
|
const FormContainer = styled.div `
|
|
22
24
|
display: flex;
|
|
23
25
|
flex-direction: column;
|
|
@@ -56,6 +58,19 @@ const SET_RULE_DATASOURCE = [
|
|
|
56
58
|
{ value: WorkItemSetRules.Ands_AND_Ors, display: "Ands_AND_Ors" },
|
|
57
59
|
{ value: WorkItemSetRules.Ands_OR_Ors, display: "Ands_OR_Ors" }
|
|
58
60
|
];
|
|
61
|
+
const CULTUREIDs_DATASOURCE = [
|
|
62
|
+
{ value: CultureIDs.It_IT, display: "Italiano", icon: _jsx("img", { src: getCultureIDImg(CultureIDs.It_IT), alt: "Lang", width: 16, height: 16 }) },
|
|
63
|
+
{ value: CultureIDs.Fr_FR, display: "Française", icon: _jsx("img", { src: getCultureIDImg(CultureIDs.Fr_FR), alt: "Lang", width: 16, height: 16 }) },
|
|
64
|
+
{ value: CultureIDs.Pt_PT, display: "Português", icon: _jsx("img", { src: getCultureIDImg(CultureIDs.Pt_PT), alt: "Lang", width: 16, height: 16 }) },
|
|
65
|
+
{ value: CultureIDs.En_US, display: "English", icon: _jsx("img", { src: getCultureIDImg(CultureIDs.En_US), alt: "Lang", width: 16, height: 16 }) },
|
|
66
|
+
{ value: CultureIDs.Es_ES, display: "Español", icon: _jsx("img", { src: getCultureIDImg(CultureIDs.Es_ES), alt: "Lang", width: 16, height: 16 }) },
|
|
67
|
+
{ value: CultureIDs.De_DE, display: "Deutsch", icon: _jsx("img", { src: getCultureIDImg(CultureIDs.De_DE), alt: "Lang", width: 16, height: 16 }) },
|
|
68
|
+
];
|
|
69
|
+
const APP_TYPES_DATASOURCE = [
|
|
70
|
+
{ value: WFAppTypes.EXE, display: "EXE" },
|
|
71
|
+
{ value: WFAppTypes.SP, display: "SP" },
|
|
72
|
+
{ value: WFAppTypes.REST, display: "REST" }
|
|
73
|
+
];
|
|
59
74
|
const DiagramItemForm = ({ itemToEdit, wf, onClose, onApply }) => {
|
|
60
75
|
const [localItem, setLocalItem] = useState(itemToEdit);
|
|
61
76
|
const [localItemOrig] = useState(structuredClone(itemToEdit));
|
|
@@ -88,10 +103,18 @@ const DiagramItemForm = ({ itemToEdit, wf, onClose, onApply }) => {
|
|
|
88
103
|
width = '700px';
|
|
89
104
|
height = '510px';
|
|
90
105
|
break;
|
|
106
|
+
case DiagramItemTypes.ExecTask:
|
|
107
|
+
width = '700px';
|
|
108
|
+
height = '700px';
|
|
109
|
+
break;
|
|
91
110
|
case DiagramItemTypes.UpdateDcmt:
|
|
92
111
|
width = '700px';
|
|
93
112
|
height = '510px';
|
|
94
113
|
break;
|
|
114
|
+
case DiagramItemTypes.RunApp:
|
|
115
|
+
width = '450px';
|
|
116
|
+
height = '420px';
|
|
117
|
+
break;
|
|
95
118
|
default:
|
|
96
119
|
width = '50%';
|
|
97
120
|
height = '50%';
|
|
@@ -99,6 +122,9 @@ const DiagramItemForm = ({ itemToEdit, wf, onClose, onApply }) => {
|
|
|
99
122
|
}
|
|
100
123
|
return { calculatedWidth: width, calculatedHeight: height };
|
|
101
124
|
}, [localItem.Type]);
|
|
125
|
+
useEffect(() => {
|
|
126
|
+
console.log('localItem: ', localItem);
|
|
127
|
+
}, [localItem]);
|
|
102
128
|
const isModified = useMemo(() => calcIsModified(localItem, localItemOrig), [localItem, localItemOrig]);
|
|
103
129
|
const handleCancel = () => {
|
|
104
130
|
setLocalItem(localItemOrig); // Revert to the original state
|
|
@@ -250,6 +276,30 @@ const DiagramItemForm = ({ itemToEdit, wf, onClose, onApply }) => {
|
|
|
250
276
|
MetadataValues: updatedMetadataValues
|
|
251
277
|
}));
|
|
252
278
|
}, []);
|
|
279
|
+
const handleAppTypeChange = useCallback((newValue) => {
|
|
280
|
+
setLocalItem(prevLocalItem => ({
|
|
281
|
+
...prevLocalItem,
|
|
282
|
+
AppType: newValue
|
|
283
|
+
}));
|
|
284
|
+
}, []);
|
|
285
|
+
const handleAppNameChange = useCallback((newValue) => {
|
|
286
|
+
setLocalItem(prevLocalItem => ({
|
|
287
|
+
...prevLocalItem,
|
|
288
|
+
AppName: newValue
|
|
289
|
+
}));
|
|
290
|
+
}, []);
|
|
291
|
+
const handleAppArgsChange = useCallback((newValue) => {
|
|
292
|
+
setLocalItem(prevLocalItem => ({
|
|
293
|
+
...prevLocalItem,
|
|
294
|
+
AppArgs: newValue
|
|
295
|
+
}));
|
|
296
|
+
}, []);
|
|
297
|
+
const handleFormatCultureIDChange = useCallback((newValue) => {
|
|
298
|
+
setLocalItem(prevLocalItem => ({
|
|
299
|
+
...prevLocalItem,
|
|
300
|
+
FormatCultureID: newValue
|
|
301
|
+
}));
|
|
302
|
+
}, []);
|
|
253
303
|
// Function to render common elements like the name textbox
|
|
254
304
|
const renderCommonFields = () => {
|
|
255
305
|
if (localItem.Type !== DiagramItemTypes.Start && localItem.Type !== DiagramItemTypes.End && localItem.Type !== DiagramItemTypes.Exit && localItem.Type !== DiagramItemTypes.Status) {
|
|
@@ -277,6 +327,9 @@ const DiagramItemForm = ({ itemToEdit, wf, onClose, onApply }) => {
|
|
|
277
327
|
const renderStatusFields = () => {
|
|
278
328
|
return (_jsx(TMDataListItemPicker, { dataListID: wf?.MStatusDLID, selectedValue: localItem.StatusValue, onItemSelect: handleStatusChange }));
|
|
279
329
|
};
|
|
330
|
+
const renderAppFields = () => {
|
|
331
|
+
return (_jsxs(_Fragment, { children: [_jsx(TMDropDown, { label: SDKUI_Localizator.WorkflowAppType, dataSource: APP_TYPES_DATASOURCE, value: localItem.AppType, onValueChanged: (e) => { handleAppTypeChange(e.target.value); } }), _jsx(TMTextBox, { label: SDKUI_Localizator.WorkflowAppName, value: localItem.AppName, onValueChanged: (e) => { handleAppNameChange(e.target.value); } }), _jsx(TMTextBox, { label: SDKUI_Localizator.Arguments, value: localItem.AppArgs, onValueChanged: (e) => { handleAppArgsChange(e.target.value); } }), _jsx(TMDropDown, { label: SDKUI_Localizator.Format, dataSource: CULTUREIDs_DATASOURCE, value: localItem.FormatCultureID, onValueChanged: (e) => { handleFormatCultureIDChange(e.target.value); } })] }));
|
|
332
|
+
};
|
|
280
333
|
// Function to render Approval-specific fields
|
|
281
334
|
const renderApprovalFields = () => {
|
|
282
335
|
const newQD = () => {
|
|
@@ -287,7 +340,8 @@ const DiagramItemForm = ({ itemToEdit, wf, onClose, onApply }) => {
|
|
|
287
340
|
return qd;
|
|
288
341
|
};
|
|
289
342
|
const qdForRecipientsEditor = localItem.QD ?? newQD();
|
|
290
|
-
return (_jsxs(_Fragment, { children: [_jsx(TMLocalizedTextBox, { label: SDKUI_Localizator.Description, value: localItem.Description, value_IT: localItem.Description_IT, value_EN: localItem.Description_EN, value_FR: localItem.Description_FR, value_PT: localItem.Description_PT, value_ES: localItem.Description_ES, value_DE: localItem.Description_DE, onValueChanged: handleLocalizedDescriptionChange }), _jsx(WorkitemRecipientsEditor, { tos: localItem.Tos ?? '', mTID: wf?.MTID, qd: qdForRecipientsEditor, onTosChange: handleTosChange, onQDChange: handleSetRuleQDChange }), _jsxs(FlexContainer, { children: [_jsx(TMDropDown, { label: SDKUI_Localizator.WorkflowRecipientSetRule, elementStyle: { width: '320px' }, dataSource: SET_RULE_DATASOURCE, value: localItem.SetRule, onValueChanged: (e) => { handleSetRuleChange(e.target.value); } }), _jsx(TMCheckBox, { value: localItem.AllowZeroTos ?? 0, label: SDKUI_Localizator.WorkflowAllowZeroTos, isModifiedWhen: localItem.AllowZeroTos !== localItemOrig.AllowZeroTos, onValueChanged: handleAllowZeroTosChange })] })
|
|
343
|
+
return (_jsxs(_Fragment, { children: [_jsx(TMLocalizedTextBox, { label: SDKUI_Localizator.Description, value: localItem.Description, value_IT: localItem.Description_IT, value_EN: localItem.Description_EN, value_FR: localItem.Description_FR, value_PT: localItem.Description_PT, value_ES: localItem.Description_ES, value_DE: localItem.Description_DE, onValueChanged: handleLocalizedDescriptionChange }), _jsx(WorkitemRecipientsEditor, { tos: localItem.Tos ?? '', mTID: wf?.MTID, qd: qdForRecipientsEditor, onTosChange: handleTosChange, onQDChange: handleSetRuleQDChange }), _jsxs(FlexContainer, { children: [_jsx(TMDropDown, { label: SDKUI_Localizator.WorkflowRecipientSetRule, elementStyle: { width: '320px' }, dataSource: SET_RULE_DATASOURCE, value: localItem.SetRule, onValueChanged: (e) => { handleSetRuleChange(e.target.value); } }), _jsx(TMCheckBox, { value: localItem.AllowZeroTos ?? 0, label: SDKUI_Localizator.WorkflowAllowZeroTos, isModifiedWhen: localItem.AllowZeroTos !== localItemOrig.AllowZeroTos, onValueChanged: handleAllowZeroTosChange })] }), localItem.Type === DiagramItemTypes.ExecTask &&
|
|
344
|
+
_jsxs(BoxContainer, { children: [_jsx(HeaderContainer, { children: _jsx("span", { children: SDKUI_Localizator.Application }) }), renderAppFields()] })] }));
|
|
291
345
|
};
|
|
292
346
|
// Function to render UpdateDcmt-specific fields
|
|
293
347
|
const renderUpdateDcmtFields = () => {
|
|
@@ -358,6 +412,10 @@ const DiagramItemForm = ({ itemToEdit, wf, onClose, onApply }) => {
|
|
|
358
412
|
}));
|
|
359
413
|
} })] })] }));
|
|
360
414
|
};
|
|
415
|
+
// Function to render RunApp-specific fields
|
|
416
|
+
const renderRunAppFields = () => {
|
|
417
|
+
return (_jsxs(_Fragment, { children: [_jsx(TMLocalizedTextBox, { label: SDKUI_Localizator.Description, value: localItem.Description, value_IT: localItem.Description_IT, value_EN: localItem.Description_EN, value_FR: localItem.Description_FR, value_PT: localItem.Description_PT, value_ES: localItem.Description_ES, value_DE: localItem.Description_DE, onValueChanged: handleLocalizedDescriptionChange }), renderAppFields()] }));
|
|
418
|
+
};
|
|
361
419
|
const renderForm = () => {
|
|
362
420
|
let specificFields;
|
|
363
421
|
switch (localItem.Type) {
|
|
@@ -378,15 +436,19 @@ const DiagramItemForm = ({ itemToEdit, wf, onClose, onApply }) => {
|
|
|
378
436
|
break;
|
|
379
437
|
case DiagramItemTypes.Approval:
|
|
380
438
|
case DiagramItemTypes.DataEntry:
|
|
439
|
+
case DiagramItemTypes.ExecTask:
|
|
381
440
|
specificFields = renderApprovalFields();
|
|
382
441
|
break;
|
|
383
442
|
case DiagramItemTypes.UpdateDcmt:
|
|
384
443
|
specificFields = renderUpdateDcmtFields();
|
|
385
444
|
break;
|
|
445
|
+
case DiagramItemTypes.RunApp:
|
|
446
|
+
specificFields = renderRunAppFields();
|
|
447
|
+
break;
|
|
386
448
|
default:
|
|
387
449
|
specificFields = null;
|
|
388
450
|
}
|
|
389
|
-
return (_jsxs(FormContainer, { children: [renderCommonFields(), specificFields, _jsxs(ButtonsContainer, { children: [_jsx(TMButton, { caption: 'Applica',
|
|
451
|
+
return (_jsxs(FormContainer, { children: [renderCommonFields(), specificFields, _jsxs(ButtonsContainer, { children: [_jsx(TMButton, { caption: 'Applica', btnStyle: 'advanced', advancedColor: TMColors.tertiary, icon: _jsx(IconApply, {}), showTooltip: false, disabled: !isModified, onClick: handleSave }), _jsx(TMButton, { caption: 'Annulla', btnStyle: 'toolbar', color: 'primary', icon: _jsx(IconUndo, {}), showTooltip: false, disabled: !isModified, onClick: handleCancel })] })] }));
|
|
390
452
|
};
|
|
391
453
|
return (_jsx(TMModal, { title: DiagramItemTypes[localItem.Type].toString(), onClose: onClose, isModal: true, width: calculatedWidth, height: calculatedHeight, children: renderForm() }));
|
|
392
454
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { QueryDescriptor, WorkItemSetRules, WorkItemStatus } from "@topconsultnpm/sdk-ts-beta";
|
|
1
|
+
import { CultureIDs, QueryDescriptor, WFAppTypes, WorkItemSetRules, WorkItemStatus } from "@topconsultnpm/sdk-ts-beta";
|
|
2
2
|
import { MetadataValueDescriptorEx } from "../../../../ts";
|
|
3
3
|
export declare enum DiagramItemTypes {
|
|
4
4
|
None = 0,
|
|
@@ -68,7 +68,7 @@ export interface DiagramItem {
|
|
|
68
68
|
MetadataValues?: MetadataValueDescriptorEx[];
|
|
69
69
|
Severity?: number;
|
|
70
70
|
RegAsWfInstPart?: number;
|
|
71
|
-
FormatCultureID?:
|
|
71
|
+
FormatCultureID?: CultureIDs | undefined;
|
|
72
72
|
Tos2?: string;
|
|
73
73
|
QD2?: string;
|
|
74
74
|
PlatformObjName?: string;
|
|
@@ -77,7 +77,7 @@ export interface DiagramItem {
|
|
|
77
77
|
Value2asInt?: number;
|
|
78
78
|
Value3asInt?: number;
|
|
79
79
|
Value1asString?: string;
|
|
80
|
-
AppType?:
|
|
80
|
+
AppType?: WFAppTypes;
|
|
81
81
|
AppName?: string;
|
|
82
82
|
AppArgs?: string;
|
|
83
83
|
Trunc?: number;
|
|
@@ -86,8 +86,8 @@ const TMChooserForm = ({ children, title, allowMultipleSelection = false, allowA
|
|
|
86
86
|
...summaryItems ?? {}
|
|
87
87
|
});
|
|
88
88
|
}, [manageUseLocalizedName, summaryItems]);
|
|
89
|
-
return (_jsx(TMModal, { title: renderTitle(), width: width ?? '550px', height: height ?? '600px', toolbar: _jsx(ToolbarButtons, {}), onClose: onClose, children:
|
|
90
|
-
filteredItems.length > 0
|
|
89
|
+
return (_jsx(TMModal, { title: renderTitle(), width: width ?? '550px', height: height ?? '600px', toolbar: _jsx(ToolbarButtons, {}), onClose: onClose, children: children ??
|
|
90
|
+
filteredItems.length > 0
|
|
91
91
|
? _jsx(TMDataGrid, { dataSource: filteredItems, keyExpr: keyName, dataColumns: dataColumns, focusedRowKey: focusedRowKey, selectedRowKeys: selectedRowKeys, searchPanelFocusStarting: true, headerFilter: { visible: true }, selection: { mode: allowMultipleSelection ? 'multiple' : 'single', showCheckBoxesMode: 'always', selectAllMode: 'allPages' }, grouping: allowGrouping ? { autoExpandAll: false, expandMode: 'rowClick' } : undefined, summary: customSummary, onFocusedRowChanged: handleFocusedRowChange, onSelectionChanged: handleSelectionChanged, onRowDblClick: handleRowDoubleClick })
|
|
92
92
|
: _jsx(TMLayoutContainer, { gap: 30, alignItems: 'center', justifyContent: 'center', children: _jsx(TMLayoutItem, { children: _jsx("p", { style: { height: "100%", color: TMColors.primaryColor, fontSize: "1.5rem", display: 'flex', alignItems: 'center', justifyContent: 'center' }, children: SDKUI_Localizator.NoDataToDisplay }) }) }) }));
|
|
93
93
|
};
|
|
@@ -29,6 +29,7 @@ export declare class SDKUI_Localizator {
|
|
|
29
29
|
static get AllItems(): "alle Artikel" | "All items" | "Todos los artículos" | "tous les articles" | "todos os artigos" | "tutti gli elementi";
|
|
30
30
|
static get Alls2(): "Alle" | "All" | "Todos" | "Tous" | "Tutte";
|
|
31
31
|
static get Alphabetic(): "Alphabetisch" | "Alphabetic" | "Alfabético" | "Alphabétique" | "Alfabética" | "Alfabetico";
|
|
32
|
+
static get Application(): "Anwendung" | "Application" | "Aplicación" | "Aplicação" | "Applicazione";
|
|
32
33
|
static get Applied(): string;
|
|
33
34
|
static get Apply(): "Anwenden" | "Apply" | "Aplicar" | "Applique" | "Applica";
|
|
34
35
|
static get ApplyAndClose(): "Anwenden und Schließen" | "Apply and close" | "Aplicar y cerrar" | "Applique et ferme" | "Aplicar e fechar" | "Applica e chiudi";
|
|
@@ -40,6 +41,7 @@ export declare class SDKUI_Localizator {
|
|
|
40
41
|
static get ArchiveConstraints_OnlyMetadata(): "Nur Methadatenarchivierung erlauben" | "Allow metadata only archiving" | "Permitir solo almacenamiento de metadatos" | "Autorise uniquement l'archivage de métadonnées" | "Permitir somente os metadados de arquivamento" | "Consenti solo archiviazioni di metadati";
|
|
41
42
|
static get ArchivedDocuments(): string;
|
|
42
43
|
static get ArchiveID(): "Armazena" | "Dokumentarisches Archiv" | "Documental archive" | "Archivo de documentos" | "Archivage des documents" | "Archivio documentale";
|
|
44
|
+
static get Arguments(): "Themen" | "Arguments" | "Argumentos" | "Sujets" | "Tópicos" | "Argomenti";
|
|
43
45
|
static get AssignedTo(): string;
|
|
44
46
|
static get AttachDocument(): "Dokument anhängen" | "Attach Document" | "Adjuntar documento" | "Joindre un document" | "Anexar documento" | "Allega documento";
|
|
45
47
|
static get AttachingDocuments(): "Dokumente werden angehängt..." | "Attaching documents..." | "Adjuntando documentos..." | "Pièces jointes en cours..." | "Anexando documentos..." | "Allegando documenti...";
|
|
@@ -541,6 +543,8 @@ export declare class SDKUI_Localizator {
|
|
|
541
543
|
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?";
|
|
542
544
|
static get WorkflowAllowZeroTos(): "0 Empfänger zulassen" | "Allow 0 recipients" | "Permitir 0 destinatarios" | "Autoriser 0 destinataires" | "Permitir 0 destinatários" | "Consenti 0 destinatari";
|
|
543
545
|
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
|
+
static get WorkflowAppName(): "Name der Anwendung" | "Application name" | "Nombre de aplicación" | "Nom de l'application" | "Nome da aplicação" | "Nome applicazione";
|
|
547
|
+
static get WorkflowAppType(): "Anwendungsart" | "Application type" | "Tipo de aplicación" | "Type d'application" | "Tipo de aplicação" | "Tipo applicazione";
|
|
544
548
|
static get WorkflowDiagramMissingOrInvalid(): "Diagramm fehlt oder ist ungültig" | "Diagram missing or invalid" | "Diagrama no presente o no válido" | "Schéma manquant ou invalide" | "Diagrama ausente ou inválido" | "Diagramma non presente o non valido";
|
|
545
549
|
static get WorkflowEndInstance(): "Instanz beenden" | "End instance" | "Finalizar instancia" | "Termine l'instance" | "Pare a instância" | "Termina istanza";
|
|
546
550
|
static get WorkflowHistWI(): "Workitems historisieren" | "Historicize workitems" | "Incluir en historial los workitem" | "Historiser le workitems" | "Historicize workItem" | "Storicizza i workitem";
|
|
@@ -238,6 +238,16 @@ export class SDKUI_Localizator {
|
|
|
238
238
|
default: return "Alfabetico";
|
|
239
239
|
}
|
|
240
240
|
}
|
|
241
|
+
static get Application() {
|
|
242
|
+
switch (this._cultureID) {
|
|
243
|
+
case CultureIDs.De_DE: return "Anwendung";
|
|
244
|
+
case CultureIDs.En_US: return "Application";
|
|
245
|
+
case CultureIDs.Es_ES: return "Aplicación";
|
|
246
|
+
case CultureIDs.Fr_FR: return "Application";
|
|
247
|
+
case CultureIDs.Pt_PT: return "Aplicação";
|
|
248
|
+
default: return "Applicazione";
|
|
249
|
+
}
|
|
250
|
+
}
|
|
241
251
|
static get Applied() {
|
|
242
252
|
switch (this._cultureID) {
|
|
243
253
|
case CultureIDs.De_DE: return "Angewandt";
|
|
@@ -348,6 +358,16 @@ export class SDKUI_Localizator {
|
|
|
348
358
|
default: return "Archivio documentale";
|
|
349
359
|
}
|
|
350
360
|
}
|
|
361
|
+
static get Arguments() {
|
|
362
|
+
switch (this._cultureID) {
|
|
363
|
+
case CultureIDs.De_DE: return "Themen";
|
|
364
|
+
case CultureIDs.En_US: return "Arguments";
|
|
365
|
+
case CultureIDs.Es_ES: return "Argumentos";
|
|
366
|
+
case CultureIDs.Fr_FR: return "Sujets";
|
|
367
|
+
case CultureIDs.Pt_PT: return "Tópicos";
|
|
368
|
+
default: return "Argomenti";
|
|
369
|
+
}
|
|
370
|
+
}
|
|
351
371
|
static get AssignedTo() {
|
|
352
372
|
switch (this._cultureID) {
|
|
353
373
|
case CultureIDs.De_DE: return "Zugewiesen an";
|
|
@@ -5375,6 +5395,26 @@ export class SDKUI_Localizator {
|
|
|
5375
5395
|
default: return "Approvazione workflow";
|
|
5376
5396
|
}
|
|
5377
5397
|
}
|
|
5398
|
+
static get WorkflowAppName() {
|
|
5399
|
+
switch (this._cultureID) {
|
|
5400
|
+
case CultureIDs.De_DE: return "Name der Anwendung";
|
|
5401
|
+
case CultureIDs.En_US: return "Application name";
|
|
5402
|
+
case CultureIDs.Es_ES: return "Nombre de aplicación";
|
|
5403
|
+
case CultureIDs.Fr_FR: return "Nom de l'application";
|
|
5404
|
+
case CultureIDs.Pt_PT: return "Nome da aplicação";
|
|
5405
|
+
default: return "Nome applicazione";
|
|
5406
|
+
}
|
|
5407
|
+
}
|
|
5408
|
+
static get WorkflowAppType() {
|
|
5409
|
+
switch (this._cultureID) {
|
|
5410
|
+
case CultureIDs.De_DE: return "Anwendungsart";
|
|
5411
|
+
case CultureIDs.En_US: return "Application type";
|
|
5412
|
+
case CultureIDs.Es_ES: return "Tipo de aplicación";
|
|
5413
|
+
case CultureIDs.Fr_FR: return "Type d'application";
|
|
5414
|
+
case CultureIDs.Pt_PT: return "Tipo de aplicação";
|
|
5415
|
+
default: return "Tipo applicazione";
|
|
5416
|
+
}
|
|
5417
|
+
}
|
|
5378
5418
|
static get WorkflowDiagramMissingOrInvalid() {
|
|
5379
5419
|
switch (this._cultureID) {
|
|
5380
5420
|
case CultureIDs.De_DE: return "Diagramm fehlt oder ist ungültig";
|
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.24",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"lib"
|
|
39
39
|
],
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@topconsultnpm/sdk-ts-beta": "6.16.
|
|
41
|
+
"@topconsultnpm/sdk-ts-beta": "6.16.4",
|
|
42
42
|
"buffer": "^6.0.3",
|
|
43
43
|
"devextreme": "25.1.4",
|
|
44
44
|
"devextreme-react": "25.1.4",
|