@topconsultnpm/sdkui-react-beta 6.12.37 → 6.12.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.
Files changed (61) hide show
  1. package/lib/components/base/Styled.d.ts +12 -0
  2. package/lib/components/base/Styled.js +49 -3
  3. package/lib/components/base/TMFloatingToolbar.d.ts +9 -0
  4. package/lib/components/base/TMFloatingToolbar.js +99 -0
  5. package/lib/components/base/TMRightSidebar.d.ts +0 -4
  6. package/lib/components/base/TMRightSidebar.js +2 -10
  7. package/lib/components/base/TMShowAllOrMaxItemsButton.d.ts +8 -0
  8. package/lib/components/base/TMShowAllOrMaxItemsButton.js +14 -0
  9. package/lib/components/base/TMTreeView.d.ts +27 -0
  10. package/lib/components/base/TMTreeView.js +199 -0
  11. package/lib/components/grids/TMBlogs.d.ts +84 -0
  12. package/lib/components/grids/TMBlogs.js +566 -0
  13. package/lib/components/grids/TMBlogsUtils.d.ts +83 -0
  14. package/lib/components/grids/TMBlogsUtils.js +258 -0
  15. package/lib/components/index.d.ts +2 -0
  16. package/lib/components/index.js +2 -0
  17. package/lib/components/query/TMBatchUpdateForm.d.ts +12 -0
  18. package/lib/components/query/TMBatchUpdateForm.js +149 -0
  19. package/lib/components/query/TMDcmtBlog.d.ts +7 -0
  20. package/lib/components/query/TMDcmtBlog.js +34 -0
  21. package/lib/components/query/TMDcmtForm.d.ts +32 -0
  22. package/lib/components/query/TMDcmtForm.js +544 -0
  23. package/lib/components/query/TMDcmtIcon.d.ts +10 -0
  24. package/lib/components/query/TMDcmtIcon.js +52 -0
  25. package/lib/components/query/TMDcmtPreview.d.ts +26 -0
  26. package/lib/components/query/TMDcmtPreview.js +200 -0
  27. package/lib/components/query/TMFileUploader.d.ts +11 -0
  28. package/lib/components/query/TMFileUploader.js +101 -0
  29. package/lib/components/query/TMMasterDetailDcmts.d.ts +23 -0
  30. package/lib/components/query/TMMasterDetailDcmts.js +475 -0
  31. package/lib/components/query/TMQueryEditor.js +2 -2
  32. package/lib/components/query/TMQueryResultForm.d.ts +1 -7
  33. package/lib/components/query/TMQueryResultForm.js +1 -9
  34. package/lib/components/query/TMWorkflowPopup.d.ts +29 -0
  35. package/lib/components/query/TMWorkflowPopup.js +131 -0
  36. package/lib/components/search/TMSearchResult.d.ts +31 -0
  37. package/lib/components/search/TMSearchResult.js +727 -0
  38. package/lib/components/search/TMSearchResultsMenuItems.d.ts +6 -0
  39. package/lib/components/search/TMSearchResultsMenuItems.js +376 -0
  40. package/lib/helper/Enum_Localizator.d.ts +2 -1
  41. package/lib/helper/Enum_Localizator.js +20 -1
  42. package/lib/helper/SDKUI_Localizator.d.ts +24 -0
  43. package/lib/helper/SDKUI_Localizator.js +240 -0
  44. package/lib/helper/dcmtsHelper.d.ts +4 -0
  45. package/lib/helper/dcmtsHelper.js +15 -0
  46. package/lib/helper/helpers.d.ts +2 -1
  47. package/lib/helper/helpers.js +74 -1
  48. package/lib/helper/queryHelper.d.ts +7 -1
  49. package/lib/helper/queryHelper.js +105 -1
  50. package/lib/hooks/useDcmtOperations.d.ts +24 -0
  51. package/lib/hooks/useDcmtOperations.js +387 -0
  52. package/lib/hooks/useInputDialog.d.ts +5 -0
  53. package/lib/hooks/useInputDialog.js +73 -0
  54. package/lib/hooks/usePreventFileDrop.d.ts +3 -0
  55. package/lib/hooks/usePreventFileDrop.js +37 -0
  56. package/lib/index.d.ts +0 -1
  57. package/lib/index.js +0 -1
  58. package/lib/services/platform_services.d.ts +1 -1
  59. package/lib/ts/types.d.ts +54 -1
  60. package/lib/ts/types.js +34 -0
  61. package/package.json +1 -1
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ import { DcmtTypeDescriptor, FileFormats, LayoutModes, RecentCategories } from '@topconsultnpm/sdk-ts-beta';
3
+ import { TMDataGridContextMenuItem } from '../base/TMDataGrid';
4
+ import { DcmtInfo, DcmtOperationTypes, SearchResultContext } from '../../ts';
5
+ export declare const getSelectedDcmtsOrFocused: (selectedItems: Array<any>, focusedItem: any, category?: RecentCategories, fileFormat?: FileFormats) => DcmtInfo[];
6
+ export declare const commandsMenuItems: (dtd: DcmtTypeDescriptor | undefined, selectedItems: Array<any>, focusedItem: any, context: SearchResultContext, showFloatingBar: boolean, setShowFloatingBar: React.Dispatch<React.SetStateAction<boolean>>, openFormHandler: (layoutMode: LayoutModes) => void, downloadDcmtsAsync: (inputDcmts: DcmtInfo[] | undefined) => Promise<void>, runOperationAsync: (inputDcmts: DcmtInfo[] | undefined, dcmtOperationType: DcmtOperationTypes, actionAfterOperationAsync?: () => Promise<void>) => Promise<void>, onRefreshSearchAsync: (() => Promise<void>) | undefined, onRefreshDataRowsAsync: (() => Promise<void>) | undefined, onRefreshAfterAddDcmtToFavs: (() => void) | undefined, confirmFormat: () => Promise<FileFormats>, openTaskFormHandler: (value: boolean) => void, openDetailDcmtsFormHandler: (value: boolean) => void, openMasterDcmtsFormHandler: (value: boolean) => void, openBatchUpdateFormHandler: (value: boolean) => void, fromDatagrid: boolean, showDetailDcmts: boolean) => Array<TMDataGridContextMenuItem>;
@@ -0,0 +1,376 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { AccessLevels, AccessLevelsEx, FileFormats, LayoutModes, SDK_Globals } from '@topconsultnpm/sdk-ts-beta';
3
+ import { IconActivity, IconArchiveDoc, IconBatchUpdate, IconCheckFile, IconCheckIn, IconCloseCircle, IconConvertFilePdf, IconDelete, IconDotsVerticalCircleOutline, IconDownload, IconExportTo, IconFileDots, IconHide, IconInfo, IconPreview, IconRelation, IconSave, IconSearch, IconShare, IconSharedDcmt, IconShow, IconSignature, IconStar, IconSubstFile, IconUndo, SDKUI_Localizator, svgToString } from '../../helper';
4
+ import ShowAlert from '../base/TMAlert';
5
+ import { TMMessageBoxManager, ButtonNames, TMExceptionBoxManager } from '../base/TMPopUp';
6
+ import TMSpinner from '../base/TMSpinner';
7
+ import { DcmtOperationTypes, SearchResultContext } from '../../ts';
8
+ const disabledForSingleRow = (selectedItems, focusedItem) => {
9
+ return selectedItems.length > 1 || focusedItem === undefined;
10
+ };
11
+ const disabledForMultiRow = (selectedItems, focusedItem) => {
12
+ return selectedItems.length === 0 && focusedItem === undefined;
13
+ };
14
+ const MAX_DCMTS_FOR_SELECTION_REFRESH = 100;
15
+ export const getSelectedDcmtsOrFocused = (selectedItems, focusedItem, category, fileFormat) => {
16
+ if (selectedItems.length <= 0 && !focusedItem)
17
+ return [];
18
+ if (selectedItems.length > 0) {
19
+ return selectedItems.map((item) => { return { TID: item.TID, DID: item.DID, Category: category, FILEEXT: item.FILEEXT, fileFormat: fileFormat }; });
20
+ }
21
+ else if (focusedItem !== undefined) {
22
+ return [{ TID: focusedItem.TID, DID: focusedItem.DID, Category: category, FILEEXT: focusedItem.FILEEXT, fileFormat: fileFormat }];
23
+ }
24
+ return [];
25
+ };
26
+ export const commandsMenuItems = (dtd, selectedItems, focusedItem, context, showFloatingBar, setShowFloatingBar, openFormHandler, downloadDcmtsAsync, runOperationAsync, onRefreshSearchAsync, onRefreshDataRowsAsync, onRefreshAfterAddDcmtToFavs, confirmFormat, openTaskFormHandler, openDetailDcmtsFormHandler, openMasterDcmtsFormHandler, openBatchUpdateFormHandler, fromDatagrid, showDetailDcmts) => {
27
+ return [
28
+ {
29
+ icon: svgToString(_jsx(IconFileDots, {})),
30
+ text: "Operazioni sui documenti",
31
+ disabled: disabledForSingleRow(selectedItems, focusedItem) && disabledForMultiRow(selectedItems, focusedItem),
32
+ items: [
33
+ {
34
+ icon: svgToString(_jsx(IconStar, {})),
35
+ text: 'Aggiungi a "Preferiti"',
36
+ operationType: 'multiRow',
37
+ disabled: fromDatagrid ? context === SearchResultContext.FAVORITES : context === SearchResultContext.FAVORITES || disabledForMultiRow(selectedItems, focusedItem),
38
+ onClick: async () => { await runOperationAsync(getSelectedDcmtsOrFocused(selectedItems, focusedItem), DcmtOperationTypes.AddToFavs); onRefreshAfterAddDcmtToFavs?.(); },
39
+ },
40
+ {
41
+ icon: svgToString(_jsx(IconSubstFile, {})),
42
+ text: "Aggiungi/sostituisci file",
43
+ operationType: 'singleRow',
44
+ disabled: dtd?.perm?.canSubstFile !== AccessLevels.Yes ? true : fromDatagrid ? false : disabledForSingleRow(selectedItems, focusedItem),
45
+ onClick: async () => { await runOperationAsync(getSelectedDcmtsOrFocused(selectedItems, focusedItem), DcmtOperationTypes.SubstituteFile, onRefreshDataRowsAsync); }
46
+ },
47
+ {
48
+ icon: svgToString(_jsx(IconPreview, {})),
49
+ text: "Apri form",
50
+ operationType: 'singleRow',
51
+ disabled: fromDatagrid ? false : disabledForSingleRow(selectedItems, focusedItem),
52
+ onClick: () => openFormHandler?.(LayoutModes.Update)
53
+ },
54
+ {
55
+ icon: svgToString(_jsx(IconDelete, {})),
56
+ text: "Cancellazione",
57
+ operationType: 'multiRow',
58
+ disabled: fromDatagrid ? false : disabledForMultiRow(selectedItems, focusedItem),
59
+ items: [
60
+ {
61
+ icon: svgToString(_jsx(IconDelete, {})),
62
+ text: "Cancellazione logica",
63
+ operationType: 'multiRow',
64
+ disabled: dtd?.perm?.canLogicalDelete !== AccessLevels.Yes ? true : fromDatagrid ? false : disabledForMultiRow(selectedItems, focusedItem),
65
+ onClick: async () => {
66
+ let dcmts = getSelectedDcmtsOrFocused(selectedItems, focusedItem);
67
+ await runOperationAsync(dcmts, DcmtOperationTypes.LogDelete, dcmts.length <= MAX_DCMTS_FOR_SELECTION_REFRESH ? onRefreshDataRowsAsync : onRefreshSearchAsync);
68
+ }
69
+ },
70
+ {
71
+ icon: svgToString(_jsx(IconUndo, {})),
72
+ text: "Ripristina",
73
+ operationType: 'multiRow',
74
+ disabled: dtd?.perm?.canLogicalDelete !== AccessLevels.Yes ? true : fromDatagrid ? false : disabledForMultiRow(selectedItems, focusedItem),
75
+ onClick: async () => {
76
+ let dcmts = getSelectedDcmtsOrFocused(selectedItems, focusedItem);
77
+ await runOperationAsync(dcmts, DcmtOperationTypes.Undelete, dcmts.length <= MAX_DCMTS_FOR_SELECTION_REFRESH ? onRefreshDataRowsAsync : onRefreshSearchAsync);
78
+ }
79
+ },
80
+ {
81
+ icon: svgToString(_jsx(IconCloseCircle, {})),
82
+ text: "Cancellazione fisica",
83
+ operationType: 'multiRow',
84
+ disabled: dtd?.perm?.canPhysicalDelete !== AccessLevels.Yes ? true : fromDatagrid ? false : disabledForMultiRow(selectedItems, focusedItem),
85
+ onClick: async () => { await runOperationAsync(getSelectedDcmtsOrFocused(selectedItems, focusedItem), DcmtOperationTypes.PhysDelete, onRefreshSearchAsync); }
86
+ },
87
+ ]
88
+ },
89
+ {
90
+ icon: svgToString(_jsx(IconCheckFile, {})),
91
+ text: "Controllo file",
92
+ operationType: 'multiRow',
93
+ disabled: fromDatagrid ? false : disabledForMultiRow(selectedItems, focusedItem),
94
+ onClick: async () => { await runOperationAsync(getSelectedDcmtsOrFocused(selectedItems, focusedItem), DcmtOperationTypes.CheckFile); }
95
+ },
96
+ {
97
+ icon: svgToString(_jsx(IconConvertFilePdf, {})),
98
+ text: "Conversione file",
99
+ operationType: 'multiRow',
100
+ disabled: fromDatagrid ? false : disabledForMultiRow(selectedItems, focusedItem),
101
+ onClick: async () => {
102
+ let format = await confirmFormat();
103
+ if (format === FileFormats.None)
104
+ return;
105
+ let dcmts = getSelectedDcmtsOrFocused(selectedItems, focusedItem, undefined, format);
106
+ await runOperationAsync(dcmts, DcmtOperationTypes.ConvertFile, dcmts.length <= MAX_DCMTS_FOR_SELECTION_REFRESH ? onRefreshDataRowsAsync : onRefreshSearchAsync);
107
+ }
108
+ },
109
+ {
110
+ icon: svgToString(_jsx(IconActivity, {})),
111
+ text: SDKUI_Localizator.CreateContextualTask,
112
+ operationType: 'singleRow',
113
+ disabled: fromDatagrid ? false : disabledForSingleRow(selectedItems, focusedItem),
114
+ onClick: async () => {
115
+ openTaskFormHandler(true);
116
+ }
117
+ },
118
+ {
119
+ icon: svgToString(_jsx(IconDownload, {})),
120
+ operationType: 'multiRow',
121
+ disabled: dtd?.perm?.canRetrieveFile !== AccessLevels.Yes ? true : fromDatagrid ? false : disabledForMultiRow(selectedItems, focusedItem),
122
+ text: "Download file", onClick: () => downloadDcmtsAsync(getSelectedDcmtsOrFocused(selectedItems, focusedItem))
123
+ },
124
+ {
125
+ icon: svgToString(_jsx(IconArchiveDoc, {})),
126
+ text: "Duplica documento",
127
+ operationType: 'singleRow',
128
+ disabled: dtd?.perm?.canArchive !== AccessLevelsEx.Yes && dtd?.perm?.canArchive !== AccessLevelsEx.Mixed ? true : fromDatagrid ? false : disabledForSingleRow(selectedItems, focusedItem),
129
+ onClick: () => { openFormHandler?.(LayoutModes.Ark); }
130
+ },
131
+ {
132
+ icon: svgToString(_jsx(IconBatchUpdate, {})),
133
+ text: "Modifica multipla",
134
+ operationType: 'multiRow',
135
+ disabled: dtd?.perm?.canUpdate !== AccessLevelsEx.Yes && dtd?.perm?.canUpdate !== AccessLevelsEx.Mixed ? true : fromDatagrid ? false : disabledForMultiRow(selectedItems, focusedItem),
136
+ onClick: () => openBatchUpdateFormHandler?.(true)
137
+ }
138
+ ]
139
+ },
140
+ {
141
+ icon: svgToString(_jsx(IconSignature, {})),
142
+ text: "Firma",
143
+ disabled: disabledForSingleRow(selectedItems, focusedItem) && disabledForMultiRow(selectedItems, focusedItem),
144
+ items: [
145
+ {
146
+ icon: svgToString(_jsx(IconSignature, {})),
147
+ text: "Informazioni di firma",
148
+ operationType: 'multiRow',
149
+ disabled: fromDatagrid ? false : disabledForMultiRow(selectedItems, focusedItem),
150
+ onClick: () => ShowAlert({ message: "TODO Informazioni di firma", mode: 'info', title: `${"TODO"}`, duration: 3000 })
151
+ },
152
+ {
153
+ icon: svgToString(_jsx(IconSignature, {})),
154
+ text: "Verifica firma",
155
+ operationType: 'multiRow',
156
+ disabled: fromDatagrid ? false : disabledForMultiRow(selectedItems, focusedItem),
157
+ onClick: async () => { await runOperationAsync(getSelectedDcmtsOrFocused(selectedItems, focusedItem), DcmtOperationTypes.VerifySign); }
158
+ },
159
+ {
160
+ icon: svgToString(_jsx(IconSignature, {})),
161
+ operationType: 'multiRow',
162
+ disabled: fromDatagrid ? false : disabledForMultiRow(selectedItems, focusedItem),
163
+ text: "Firma e marca", onClick: () => ShowAlert({ message: "TODO Firma e marca", mode: 'info', title: `${"TODO"}`, duration: 3000 })
164
+ },
165
+ ]
166
+ },
167
+ {
168
+ icon: svgToString(_jsx(IconCheckIn, {})),
169
+ text: "Check in",
170
+ disabled: disabledForSingleRow(selectedItems, focusedItem) && disabledForMultiRow(selectedItems, focusedItem),
171
+ items: [
172
+ {
173
+ icon: svgToString(_jsx(IconCheckIn, {})),
174
+ operationType: 'singleRow',
175
+ disabled: fromDatagrid ? false : disabledForSingleRow(selectedItems, focusedItem),
176
+ text: "Check out", onClick: () => ShowAlert({ message: "TODO Check out", mode: 'info', title: `${"TODO"}`, duration: 3000 })
177
+ },
178
+ {
179
+ icon: svgToString(_jsx(IconCheckIn, {})),
180
+ text: "Modifica file",
181
+ operationType: 'singleRow',
182
+ disabled: fromDatagrid ? false : disabledForSingleRow(selectedItems, focusedItem),
183
+ onClick: () => ShowAlert({ message: "TODO Modifica file", mode: 'info', title: `${"TODO"}`, duration: 3000 })
184
+ },
185
+ {
186
+ icon: svgToString(_jsx(IconCheckIn, {})),
187
+ text: "Annulla check out",
188
+ operationType: 'singleRow',
189
+ disabled: fromDatagrid ? false : disabledForSingleRow(selectedItems, focusedItem),
190
+ onClick: () => ShowAlert({ message: "TODO Annulla check out", mode: 'info', title: `${"TODO"}`, duration: 3000 })
191
+ },
192
+ {
193
+ icon: svgToString(_jsx(IconCheckIn, {})),
194
+ text: "Check in",
195
+ operationType: 'singleRow',
196
+ disabled: fromDatagrid ? false : disabledForSingleRow(selectedItems, focusedItem),
197
+ onClick: () => ShowAlert({ message: "TODO Check in", mode: 'info', title: `${"TODO"}`, duration: 3000 })
198
+ },
199
+ {
200
+ icon: svgToString(_jsx(IconCheckIn, {})),
201
+ text: "Cronologia",
202
+ operationType: 'singleRow',
203
+ disabled: fromDatagrid ? false : disabledForSingleRow(selectedItems, focusedItem),
204
+ onClick: () => ShowAlert({ message: "TODO Cronologia", mode: 'info', title: `${"TODO"}`, duration: 3000 })
205
+ },
206
+ ]
207
+ },
208
+ {
209
+ icon: svgToString(_jsx(IconRelation, {})),
210
+ text: "Correlazioni",
211
+ operationType: 'multiRow',
212
+ disabled: fromDatagrid ? false : disabledForMultiRow(selectedItems, focusedItem),
213
+ items: [
214
+ {
215
+ icon: svgToString(_jsx(IconRelation, {})),
216
+ text: "Abbina documenti molti a molti",
217
+ operationType: 'multiRow',
218
+ disabled: fromDatagrid ? false : disabledForMultiRow(selectedItems, focusedItem),
219
+ onClick: () => ShowAlert({ message: "TODO Abbina documenti molti a molti", mode: 'info', title: `${"TODO"}`, duration: 3000 })
220
+ },
221
+ {
222
+ icon: svgToString(_jsx(IconRelation, {})),
223
+ text: "Disabbina documenti molti a molti",
224
+ operationType: 'multiRow',
225
+ disabled: fromDatagrid ? false : disabledForMultiRow(selectedItems, focusedItem),
226
+ onClick: () => ShowAlert({ message: "TODO Disabbina documenti molti a molti", mode: 'info', title: `${"TODO"}`, duration: 3000 })
227
+ },
228
+ {
229
+ icon: svgToString(_jsx(IconRelation, {})),
230
+ text: "Archivia documento master",
231
+ operationType: 'multiRow',
232
+ beginGroup: true,
233
+ disabled: fromDatagrid ? false : disabledForMultiRow(selectedItems, focusedItem),
234
+ onClick: () => ShowAlert({ message: "TODO Archivia documento master", mode: 'info', title: `${"TODO"}`, duration: 3000 })
235
+ },
236
+ {
237
+ icon: svgToString(_jsx(IconRelation, {})),
238
+ text: "Archivia documento dettaglio",
239
+ operationType: 'multiRow',
240
+ disabled: fromDatagrid ? false : disabledForMultiRow(selectedItems, focusedItem),
241
+ onClick: () => ShowAlert({ message: "TODO Archivia documento dettaglio", mode: 'info', title: `${"TODO"}`, duration: 3000 })
242
+ },
243
+ {
244
+ icon: svgToString(_jsx(IconRelation, {})),
245
+ text: SDKUI_Localizator.DcmtsMaster,
246
+ operationType: 'singleRow',
247
+ visible: showDetailDcmts,
248
+ beginGroup: true,
249
+ disabled: disabledForSingleRow(selectedItems, focusedItem),
250
+ onClick: () => openMasterDcmtsFormHandler?.(true)
251
+ },
252
+ {
253
+ icon: svgToString(_jsx(IconRelation, {})),
254
+ text: SDKUI_Localizator.DcmtsDetail,
255
+ operationType: 'multiRow',
256
+ visible: showDetailDcmts,
257
+ disabled: fromDatagrid ? false : disabledForMultiRow(selectedItems, focusedItem),
258
+ onClick: () => openDetailDcmtsFormHandler?.(true)
259
+ }
260
+ ]
261
+ },
262
+ {
263
+ icon: svgToString(_jsx(IconShare, {})),
264
+ text: "Condivisione",
265
+ operationType: 'multiRow',
266
+ disabled: fromDatagrid ? false : disabledForMultiRow(selectedItems, focusedItem),
267
+ items: [
268
+ {
269
+ icon: svgToString(_jsx(IconShare, {})),
270
+ text: "Archiviazione condivisa",
271
+ operationType: 'multiRow',
272
+ disabled: fromDatagrid ? false : disabledForMultiRow(selectedItems, focusedItem),
273
+ onClick: () => ShowAlert({ message: "TODO Archiviazione condivisa", mode: 'info', title: `${"TODO"}`, duration: 3000 })
274
+ },
275
+ {
276
+ icon: svgToString(_jsx(IconSharedDcmt, {})),
277
+ text: "Documenti condivisi",
278
+ operationType: 'multiRow',
279
+ disabled: fromDatagrid ? false : disabledForMultiRow(selectedItems, focusedItem),
280
+ onClick: () => ShowAlert({ message: "TODO Documenti condivisi", mode: 'info', title: `${"TODO"}`, duration: 3000 })
281
+ }
282
+ ]
283
+ },
284
+ {
285
+ icon: svgToString(_jsx(IconSearch, {})),
286
+ text: "Ricerca full text",
287
+ operationType: 'multiRow',
288
+ disabled: fromDatagrid ? false : disabledForMultiRow(selectedItems, focusedItem),
289
+ items: [
290
+ {
291
+ icon: svgToString(_jsx(IconInfo, {})),
292
+ text: "Informazioni di indicizzazione",
293
+ operationType: 'singleRow',
294
+ disabled: disabledForSingleRow(selectedItems, focusedItem),
295
+ onClick: async () => {
296
+ try {
297
+ TMSpinner.show({ description: `${SDKUI_Localizator.Loading}...` });
298
+ let dcmts = getSelectedDcmtsOrFocused(selectedItems, focusedItem);
299
+ const msg = await SDK_Globals.tmSession?.NewSearchEngine().FreeSearchGetDcmtInfoAsync(dcmts[0].TID, dcmts[0].DID);
300
+ TMMessageBoxManager.show({ buttons: [ButtonNames.OK], message: msg, title: "Informazioni di indicizzazione" });
301
+ }
302
+ catch (e) {
303
+ TMExceptionBoxManager.show({ exception: e });
304
+ }
305
+ finally {
306
+ TMSpinner.hide();
307
+ }
308
+ }
309
+ },
310
+ {
311
+ icon: svgToString(_jsx(IconArchiveDoc, {})),
312
+ text: "Indicizza (o re-indicizza)",
313
+ operationType: 'multiRow',
314
+ disabled: fromDatagrid ? false : disabledForMultiRow(selectedItems, focusedItem),
315
+ onClick: async () => { await runOperationAsync(getSelectedDcmtsOrFocused(selectedItems, focusedItem), DcmtOperationTypes.FreeSearchReindex); }
316
+ },
317
+ {
318
+ icon: svgToString(_jsx(IconDelete, {})),
319
+ text: "Elimina indicizzazione",
320
+ operationType: 'multiRow',
321
+ disabled: fromDatagrid ? false : disabledForMultiRow(selectedItems, focusedItem),
322
+ onClick: async () => { await runOperationAsync(getSelectedDcmtsOrFocused(selectedItems, focusedItem), DcmtOperationTypes.FreeSearchPurge); }
323
+ }
324
+ ]
325
+ },
326
+ {
327
+ icon: svgToString(_jsx(IconDotsVerticalCircleOutline, {})),
328
+ text: "Altro",
329
+ items: [
330
+ {
331
+ icon: svgToString(_jsx(IconExportTo, {})),
332
+ text: "Esporta in...",
333
+ operationType: 'multiRow',
334
+ disabled: fromDatagrid ? false : disabledForMultiRow(selectedItems, focusedItem),
335
+ onClick: () => ShowAlert({ message: "TODO Esporta in", mode: 'info', title: `${"TODO"}`, duration: 3000 })
336
+ },
337
+ {
338
+ icon: svgToString(_jsx(IconShow, {})),
339
+ text: "Mostra footer",
340
+ disabled: false,
341
+ onClick: () => ShowAlert({ message: "TODO Mostra footer", mode: 'info', title: `${"TODO"}`, duration: 3000 })
342
+ },
343
+ {
344
+ icon: svgToString(showFloatingBar ? _jsx(IconHide, {}) : _jsx(IconShow, {})),
345
+ text: showFloatingBar ? "Nascondi floating bar" : "Mostra floating bar",
346
+ disabled: false,
347
+ onClick: () => setShowFloatingBar(!showFloatingBar)
348
+ },
349
+ {
350
+ icon: svgToString(_jsx(IconSave, {})),
351
+ text: "Salva layout",
352
+ disabled: false,
353
+ onClick: () => ShowAlert({ message: "TODO Salva layout", mode: 'info', title: `${"TODO"}`, duration: 3000 })
354
+ },
355
+ {
356
+ icon: svgToString(_jsx(IconSearch, {})),
357
+ text: "Trova tutti i riferimenti",
358
+ items: [
359
+ {
360
+ icon: svgToString(_jsx(IconSearch, {})),
361
+ text: "Trova tutti i riferimenti",
362
+ disabled: false,
363
+ onClick: () => ShowAlert({ message: "TODO Trova tutti i riferimenti", mode: 'info', title: `${"TODO"}`, duration: 3000 })
364
+ },
365
+ {
366
+ icon: svgToString(_jsx(IconSearch, {})),
367
+ text: "Trova tutti i riferimenti (anche nello storico)",
368
+ disabled: false,
369
+ onClick: () => ShowAlert({ message: "TODO Trova tutti i riferimenti (anche nello storico)", mode: 'info', title: `${"TODO"}`, duration: 3000 })
370
+ },
371
+ ]
372
+ }
373
+ ]
374
+ }
375
+ ];
376
+ };
@@ -1,6 +1,7 @@
1
1
  import { ArchiveConstraints, JobTypes, JoinTypes, MetadataFormats, OwnershipLevels, ParametricFilterTypes, QueryFunctions, QueryOperators, UserLevels } from "@topconsultnpm/sdk-ts-beta";
2
- import { FormModes } from "../ts";
2
+ import { DcmtOperationTypes, FormModes } from "../ts";
3
3
  export declare function LocalizeArchiveConstraints(value: ArchiveConstraints | undefined): "Archivierung nur mit Dateien erlauben" | "Allow file only archiving" | "Permitir solo almacenamientos con archivo" | "Autorise uniquement l'archivage de fichiers" | "Permitir somente depósitos com arquivos" | "Consenti solo archiviazioni con file" | "Alles zulassen" | "Allow everything" | "Permitir todo" | "Autorise tout" | "Permitir que todos" | "Consenti tutto" | "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";
4
+ export declare function LocalizeDcmtOperationTypes(value: DcmtOperationTypes | undefined): string;
4
5
  export declare function LocalizeFormModes(value: FormModes | undefined): "Erstellen" | "Create" | "Crear" | "Créer" | "Criar" | "Crea" | "Duplikat" | "Duplicate" | "Duplicar" | "Dupliquer" | "Duplicado" | "Duplica" | "Nur Lesen" | "Read only" | "Solo lectura" | "En lecture seule" | "Somente leitura" | "Solo lettura" | "Bearbeiten" | "Update" | "Modificar" | "Modifie" | "Modificação" | "Modifica" | "None" | "Niemand" | "Ninguno" | "Aucun" | "Nenhum" | "Nessuno";
5
6
  export declare function LocalizeJobTypes(value: JobTypes | undefined): string;
6
7
  export declare function LocalizeMetadataFormats(value: MetadataFormats): string;
@@ -1,6 +1,6 @@
1
1
  import { ArchiveConstraints, CultureIDs, JobTypes, JoinTypes, MetadataFormats, OwnershipLevels, ParametricFilterTypes, QueryFunctions, QueryOperators, SDK_Globals, SDK_Localizator, UserLevels } from "@topconsultnpm/sdk-ts-beta";
2
2
  import { SDKUI_Localizator } from "./SDKUI_Localizator";
3
- import { FormModes } from "../ts";
3
+ import { DcmtOperationTypes, FormModes } from "../ts";
4
4
  export function LocalizeArchiveConstraints(value) {
5
5
  switch (value) {
6
6
  case undefined:
@@ -9,6 +9,25 @@ export function LocalizeArchiveConstraints(value) {
9
9
  case ArchiveConstraints.ContentCompulsory: return SDKUI_Localizator.ArchiveConstraints_ContentCompulsory;
10
10
  }
11
11
  }
12
+ export function LocalizeDcmtOperationTypes(value) {
13
+ switch (value) {
14
+ case DcmtOperationTypes.Undelete: return "Ripristina";
15
+ case DcmtOperationTypes.Download: return "Download file";
16
+ case DcmtOperationTypes.LogDelete: return "Cancellazione logica";
17
+ case DcmtOperationTypes.PhysDelete: return "Cancellazione fisica";
18
+ case DcmtOperationTypes.AddToFavs: return 'Aggiungi a "Preferiti"';
19
+ case DcmtOperationTypes.RemoveFromFavs: return 'Rimuovi da "Preferiti"';
20
+ case DcmtOperationTypes.RemoveFromRecents: return 'Rimuovi da "Recenti"';
21
+ case DcmtOperationTypes.CheckFile: return 'Controllo file';
22
+ case DcmtOperationTypes.ConvertFile: return 'Conversione file';
23
+ case DcmtOperationTypes.VerifySign: return 'Verifica firma';
24
+ case DcmtOperationTypes.SubstituteFile: return 'Aggiungi/sostituisci file';
25
+ case DcmtOperationTypes.FreeSearchReindex: return 'Indicizza (o re-indicizza)';
26
+ case DcmtOperationTypes.FreeSearchPurge: return 'Elimina indicizzazione';
27
+ case DcmtOperationTypes.BatchUpdate: return 'Modifica multipla';
28
+ default: return value;
29
+ }
30
+ }
12
31
  export function LocalizeFormModes(value) {
13
32
  switch (value) {
14
33
  case undefined:
@@ -6,6 +6,7 @@ export declare class SDKUI_Localizator {
6
6
  * @param {CultureIDs} cultureID - Lingua da impostare
7
7
  */
8
8
  static setLanguage(cultureID: CultureIDs | undefined): void;
9
+ static get Active(): string;
9
10
  static get Abort(): "Stoppen" | "Abort" | "Detener" | "Arrêtez" | "Parar" | "Interrompi";
10
11
  static get Abort_Confirm(): "Stoppen Sie die Verarbeitung?" | "Cancel processing?" | "¿Interrumpir la elaboración?" | "Voulez-vous interrompre l'operation?" | "Pare o processamento?" | "Interrompere l'elaborazione?";
11
12
  static get About(): "Informationen" | "About" | "Información" | "Informations" | "Informações" | "Informazioni";
@@ -29,7 +30,10 @@ export declare class SDKUI_Localizator {
29
30
  static get ArchiveConstraints_ContentCompulsory(): "Archivierung nur mit Dateien erlauben" | "Allow file only archiving" | "Permitir solo almacenamientos con archivo" | "Autorise uniquement l'archivage de fichiers" | "Permitir somente depósitos com arquivos" | "Consenti solo archiviazioni con file";
30
31
  static get ArchiveConstraints_None(): "Alles zulassen" | "Allow everything" | "Permitir todo" | "Autorise tout" | "Permitir que todos" | "Consenti tutto";
31
32
  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";
33
+ static get ArchivedDocuments(): string;
32
34
  static get ArchiveID(): "Armazena" | "Dokumentarisches Archiv" | "Documental archive" | "Archivo de documentos" | "Archivage des documents" | "Archivio documentale";
35
+ static get Attachment(): string;
36
+ static get Attachments(): string;
33
37
  static get Attention(): "Aufmerksamkeit" | "Attention" | "Atención" | "Atenção" | "Attenzione";
34
38
  static get AuthMode(): "Authentifizierungsmodus" | "Authentication mode" | "Modo de autenticación" | "Mode d'authentification" | "Modo de autenticação" | "Modalità di autenticazione";
35
39
  static get AuthMode_OnBehalfOf(): string;
@@ -57,6 +61,7 @@ export declare class SDKUI_Localizator {
57
61
  static get Close(): "Ausgang" | "Close" | "Salida" | "Sortie" | "Saída" | "Chiudi";
58
62
  static get Columns_All_Hide(): "Alle Spalten ausblenden" | "Hide all columns" | "Ocultar todas las columnas" | "Masquer toutes les colonnes" | "Ocultar todas as colunas" | "Nascondi tutte le colonne";
59
63
  static get Columns_All_Show(): "Alle Spalten anzeigen" | "Show all columns" | "Mostrar todas las columnas" | "Afficher toutes les colonnes" | "Mostrar todas as colunas" | "Visualizza tutte le colonne";
64
+ static get Comment(): string;
60
65
  static get CompleteError(): "Kompletter Fehler" | "Complete error" | "Error completo" | "Erreur complète" | "Erro completo" | "Errore completo";
61
66
  static get Configure(): "Konfigurieren" | "Configure" | "Configurar" | "Configura";
62
67
  static get ConfirmPassword(): "Bestätige das Passwort" | "Confirm password" | "Confirmar Contraseña" | "Confirmez le mot de passe" | "Confirme sua senha" | "Conferma password";
@@ -66,6 +71,7 @@ export declare class SDKUI_Localizator {
66
71
  static get CopyToClipboard(): "Erfolgreich in die Zwischenablage kopiert" | "Copy in clipboard" | "Copiar en portapapeles" | "Copier dans le presse-papier" | "Copiar na área de transferência" | "Copia negli appunti";
67
72
  static get Count(): "Zählen" | "Count" | "Contar" | "Compte" | "Contagem" | "Conta";
68
73
  static get Create(): "Erstellen" | "Create" | "Crear" | "Créer" | "Criar" | "Crea";
74
+ static get CreateContextualTask(): string;
69
75
  static get CreationTime(): "Erstellungsdatum" | "Creation Time" | "Fecha creación" | "Date de création" | "Data de criação" | "Data creazione";
70
76
  static get CultureID(): "Sprache" | "Language" | "Idioma" | "Lingue" | "Língua" | "Lingua";
71
77
  static get CurrentUserExtract(): string;
@@ -82,13 +88,16 @@ export declare class SDKUI_Localizator {
82
88
  static get Delete(): "Löschen" | "Delete" | "Borrar" | "Supprimer" | "Excluir" | "Elimina";
83
89
  static get Delete_ConfirmFor1(): "Löschen Sie '{{0}}'?" | "Delete '{{0}}'?" | "¿Eliminar '{{0}}'?" | "Voulez-vous éliminer '{{0}}'?" | "Eliminar '{{0}}'?" | "Eliminare '{{0}}'?";
84
90
  static get Delete_ConfirmForN(): "{{0}} Ausgewählte Objekte. Alle löschen?" | "{{0}} selected objects. Delete them all?" | "{{0}} objetos seleccionados. ¿Eliminarlos todos?" | "{{0}} objets sélectionnés. Éliminez-les tous?" | "{{0}} objetos selecionados. Eliminá-los todos?" | "{{0}} oggetti selezionati. Eliminarli tutti?";
91
+ static get DeleteComment(): "Kommentar löschen?" | "Delete the comment?" | "¿Eliminar el comentario?" | "Supprimer le commentaire ?" | "Eliminar o comentário?" | "Eliminare il commento?";
85
92
  static get DeletionCompletedSuccessfully(): "Löschung erfolgreich abgeschlossen" | "Deletion completed successfully" | "Eliminación completada con éxito" | "Suppression terminée avec succès" | "Exclusão concluída com sucesso" | "Eliminazione completata con successo";
93
+ static get Deleted(): "Gelöscht" | "Deleted" | "Eliminados" | "Supprimés" | "Excluídos" | "Eliminati";
86
94
  static get DeletionOperationInterrupted(): "Löschvorgang abgebrochen" | "Deletion operation interrupted" | "Operación de eliminación interrumpida" | "Opération de suppression interrompue" | "Operação de exclusão interrompida" | "Operazione di eliminazione interrotta";
87
95
  static get Description(): "Beschreibung" | "Description" | "Descripción" | "Descrição" | "Descrizione";
88
96
  static get Destination(): "Bestimmung" | "Destination" | "Destino" | "Destinazione";
89
97
  static get DetailsView(): string;
90
98
  static get Disabled(): "Deaktiviert" | "Disabled" | "Deshabilitado" | "Désactivé" | "Desabilitado" | "Disabilitato";
91
99
  static get DistinctValues(): "Unterschiedliche Werte" | "Distinct values" | "Valores distintos" | "Valeurs distinctes" | "Valori distinti";
100
+ static get DocumentNotAvailable(): string;
92
101
  static get Domain(): "Domäne" | "Domain" | "Dominio" | "Domaine";
93
102
  static get Download_in_Process(): "Download läuft" | "Download in progress" | "Descarga en curso" | "Téléchargement en cours" | "Download em progresso" | "Download in corso";
94
103
  static get Drafts(): string;
@@ -154,6 +163,7 @@ export declare class SDKUI_Localizator {
154
163
  static get GetFileUploadErrorMessage(): "Fehler beim Hochladen" | "Error during upload" | "Error al subir el archivo" | "Erreur lors du téléchargement" | "Erro ao carregar o arquivo" | "Errore nel caricamento";
155
164
  static get GetFolderDeletionErrorMessage(): "Fehler beim Löschen des Ordners" | "Error deleting the folder" | "Error al eliminar la carpeta" | "Erreur lors de la suppression du dossier" | "Erro ao excluir a pasta" | "Errore nell'eliminazione della cartella";
156
165
  static get Hide_CompleteName(): "Vollständigen Namen ausblenden" | "Hide full name" | "Ocultar nombre completo" | "Masquer le nom complet" | "Ocultar nome completo" | "Nascondi nome completo";
166
+ static get HideFilters(): string;
157
167
  static get HideLeftPanel(): "Linkes Panel ausblenden" | "Hide left panel" | "Ocultar panel izquierdo" | "Masquer le panneau de gauche" | "Ocultar painel esquerdo" | "Nascondi il pannello sinistro";
158
168
  static get HideSearch(): "Suche ausblenden" | "Hide search" | "Ocultar búsqueda" | "Masquer la recherche" | "Ocultar pesquisa" | "Nascondi ricerca";
159
169
  static get ID_Hide(): "Ausblenden ID" | "Hide ID" | "Ocultar ID" | "Masquer ID" | "Nascondi ID";
@@ -169,6 +179,8 @@ export declare class SDKUI_Localizator {
169
179
  static get Interval(): "Intervall" | "Interval" | "Intervalo" | "Intervalle" | "Intervallo";
170
180
  static get Invalid_File(): "Ungültige datei" | "Invalid file" | "Archivo inválido" | "Fichier non valide" | "Arquivo inválido" | "File non valido";
171
181
  static get LastUpdateTime(): "Letzte Änderung" | "Last update Time" | "Última modificación" | "Dernière modifie" | "Última modificação" | "Ultima modifica";
182
+ static get LastVersion(): string;
183
+ static get Latest(): string;
172
184
  static get LexProt(): "Lex-Schutz" | "Lex protection" | "Protección Lex" | "Protection Lex" | "Proteção Lex" | "Protezione Lex";
173
185
  static get List_Hide(): "Liste ausblenden" | "Hide list" | "Ocultar lista" | "Masquer la liste" | "Nascondi la lista";
174
186
  static get List_Show(): "liste anzeigen" | "Show list" | "Ver lista" | "Afficher la liste" | "Visualizza la lista";
@@ -215,7 +227,10 @@ export declare class SDKUI_Localizator {
215
227
  static get NoCredentialsSaved(): "Keine gespeicherten Anmeldedaten" | "No credentials saved" | "No se han guardado credenciales" | "Aucune information d'identification enregistrée" | "Nenhuma credencial salva" | "Nessuna credenziale salvata";
216
228
  static get NoDataToDisplay(): "Keine Daten zum Anzeigen" | "No data to display" | "No hay datos para mostrar" | "Aucune donnée à afficher" | "Sem dados para exibir" | "Nessun dato da visualizzare";
217
229
  static get NoDcmtFound(): "Kein Dokument gefunden" | "No documents found" | "Ningún documento encontrado" | "Pas de documents trouvés" | "Nenhum documento encontrado" | "Nessun documento trovato";
230
+ static get NoMessages(): string;
231
+ static get NoMessagesFound(): string;
218
232
  static get NoneSelection(): "Keine Auswahl" | "No selection" | "Ninguna selección" | "Pas de sélections" | "Nenhuma seleção" | "Nessuna selezione";
233
+ static get OfSystem(): "Des Systems" | "Of system" | "Del sistema" | "Du système" | "Do sistema" | "Di sistema";
219
234
  static get OldPassword(): "Altes Kennwort" | "Old password" | "Contraseña anterior" | "Ancien mot de passe" | "Senha Antiga" | "Password vecchia";
220
235
  static get OpenInNewTab(): "In einem neuen Tab öffnen" | "Open in new tab" | "Abrir en una nueva pestaña" | "Ouvrir dans un nouvel onglet" | "Abrir em uma nova aba" | "Apri in un nuovo tab";
221
236
  static get Operations(): "Operationen" | "Operations" | "Operaciones" | "Opérations" | "Operações" | "Operazioni";
@@ -233,6 +248,7 @@ export declare class SDKUI_Localizator {
233
248
  static get OwnershipLevelDirectOwner(): "Direkter Eigentümer" | "Direct owner" | "Propietario directo" | "Propriétaire direct" | "Directo proprietário" | "Proprietario diretto";
234
249
  static get OwnershipLevelIndirectOwner(): "Indirekter Eigentümer" | "Indirect owner" | "Propietario indirecto" | "Propriétaire indirect" | "Indireta proprietário" | "Proprietario indiretto";
235
250
  static get OwnershipLevelNotOwner(): "Nicht Eigentümer" | "Not owner" | "No propietario" | "Pas propriétaire" | "Nenhum proprietário" | "Non proprietario";
251
+ static get Path(): string;
236
252
  static get ParametricFilter(): "Parametrischer Filter" | "Parametric filter" | "Filtro de parámetros" | "Filtre paramétrique" | "Filtrar Parametric" | "Filtro parametrico";
237
253
  static get ParametricFilterTypes_ByUserID(): "Filtern nach {@UserID}" | "Filter on {@UserID}" | "Filtro en {@UserID}" | "Filtre sur {@UserID}" | "Filtre on {@UserID}" | "Filtro su {@UserID}";
238
254
  static get ParametricFilterTypes_ByUserName(): "Filtern nach {@Benutzername} (=)" | "Filter on {@UserName} (=)" | "Filtro en {@UserName} (=)" | "Filtre sur {@UserName} (=)" | "Filtre on {@UserName} (=)" | "Filtro su {@UserName} (=)";
@@ -257,6 +273,7 @@ export declare class SDKUI_Localizator {
257
273
  static get Parameters(): "Parameter" | "Parameters" | "Parámetros" | "Paramètres" | "Parâmetros" | "Parametri";
258
274
  static get Perms(): "Berechtigungen" | "Permissions" | "Permisos" | "Autorisations" | "Permissão" | "Permessi";
259
275
  static get PhysDelete(): "Physische Stornierung" | "Physical delete" | "Cancelación física" | "Supression" | "Cancelamento física" | "Cancellazione fisica";
276
+ static get Practice(): "Praxis" | "Practice" | "Práctica" | "Pratique" | "Prática" | "Pratica";
260
277
  static get PreviewView(): string;
261
278
  static get Previous(): "Vorherige" | "Previous" | "Anterior" | "Précédent" | "Precedente";
262
279
  static get ProcessedItems(): "Durchdachte Elemente" | "Processed items" | "Elementos elaborados" | "Items traités" | "Itens processados" | "Elementi elaborati";
@@ -269,6 +286,9 @@ export declare class SDKUI_Localizator {
269
286
  static get ReadOnly(): "Nur Lesen" | "Read only" | "Solo lectura" | "En lecture seule" | "Somente leitura" | "Solo lettura";
270
287
  static get Reassign(): "Neu zuweisen" | "Reassign" | "Reasignar" | "Réaffecter" | "Reatribuir" | "Riassegna";
271
288
  static get RecentDcmts(): "Zuletzt verwendete Dokumente" | "Recent documents" | "Documentos recientes" | "Documents récents" | "Documentos recentes" | "Documenti recenti";
289
+ static get RefersTo(): string;
290
+ static get RecentDocs_Archived(): "Zuletzt archivierte Dokumente" | "Last archived documents" | "Últimos documentos archivados" | "Derniers documents archivés" | "Últimos documentos arquivados" | "Ultimi documenti archiviati";
291
+ static get RecentDocs_Visualized(): "Zuletzt visualisierte Dokumente" | "Last seen documents" | "Últimos documentos visualizados" | "Derniers documents visualisés" | "Ultimi documenti visualizzati";
272
292
  static get Reject(): "Ablehnen" | "Reject" | "Rechazar" | "Rejeter" | "Rejeitar" | "Rifiuta";
273
293
  static get Relations(): "Korrelationen" | "Correlations" | "Correlaciones" | "Relations" | "Correlacionados" | "Correlazioni";
274
294
  static get RelationManyToMany(): "Folge viele mit vielen" | "Relation many to many" | "Correlación muchos a muchos" | "Corrélation plusieurs à plusieurs" | "Muitos para muitos relação" | "Correlazione molti a molti";
@@ -285,6 +305,7 @@ export declare class SDKUI_Localizator {
285
305
  static get RenameFolder(): "Ordner erfolgreich umbenannt" | "Folder renamed successfully" | "Carpeta renombrada exitosamente" | "Dossier renommé avec succès" | "Pasta renomeada com sucesso" | "Cartella rinominata con successo";
286
306
  static get RenameFile(): "Datei erfolgreich umbenannt" | "File renamed successfully" | "Archivo renombrada exitosamente" | "Fichier renommé avec succès" | "Arquivo renomeada com sucesso" | "File rinominata con successo";
287
307
  static get Restore(): "Wiederherstellen" | "Restore" | "Restablecer" | "Restaure" | "Restauração" | "Ripristina";
308
+ static get RestoreComment(): "Kommentar wiederherstellen?" | "Restore the comment?" | "¿Restaurar el comentario?" | "Restaurer le commentaire ?" | "Restaurar o comentário?" | "Ripristinare il commento?";
288
309
  static get RetrieveFile(): "Dateiwiederherstellung" | "Retrieve file" | "Recuperación archivos" | "Récupération fichier" | "Arquivos de recuperação" | "Recupero file";
289
310
  static get Rows(): "Linien" | "rows" | "líneas" | "lignes" | "linhas" | "righe";
290
311
  static get Save(): "Speichern" | "Save" | "Guardar" | "Enregistre" | "Salvar" | "Salva";
@@ -313,6 +334,7 @@ export declare class SDKUI_Localizator {
313
334
  static get Settings(): "Einstellungen" | "Settings" | "Ajustes" | "Réglages" | "Definições" | "Impostazioni";
314
335
  static get Show_CompleteName(): "Vollständigen Namen anzeigen" | "View full name" | "Mostrar nombre completo" | "Afficher le nom complet" | "Mostrar nome completo" | "Visualizza nome completo";
315
336
  static get ShowDetails(): "Details anzeigen" | "Show details" | "Mostrar detalles" | "Afficher les détails" | "Mostrar detalhes" | "Mostra dettagli";
337
+ static get ShowFilters(): string;
316
338
  static get ShowHideMetadataSystemDesc(): "Anzeigen oder Verbergen von Methadaten des Dokumententypsystems" | "Shows/hides system metadata of selected document type" | "Ver u ocultar los metadatos de sistema del tipo de documento" | "Visualise ou cache les métadonnées de système du type de document" | "Mostra ou oculta o tipo de documento de metadados do sistema" | "Visualizza o nasconde i metadati di sistema del tipo documento";
317
339
  static get ShowLeftPanel(): "Linkes Panel anzeigen" | "Show left panel" | "Mostrar panel izquierdo" | "Afficher le panneau de gauche" | "Mostrar painel esquerdo" | "Mostra il pannello sinistro";
318
340
  static get ShowSearch(): "Suche anzeigen" | "Show search" | "Mostrar búsqueda" | "Afficher la recherche" | "Mostrar pesquisa" | "Mostra ricerca";
@@ -326,6 +348,7 @@ export declare class SDKUI_Localizator {
326
348
  static get Summary(): "Zusammenfassung" | "Summary" | "Resumen" | "Résumé" | "Resumo" | "Riepilogo";
327
349
  static get SwitchUser(): "Benutzer wechseln" | "Switch user" | "Cambiar usuario" | "Changer d'utilisateur" | "Mudar de usuário" | "Cambia utente";
328
350
  static get Template(): "Modell des Autos" | "Template" | "Modelo" | "Modèle" | "Modello";
351
+ static get Today(): "Heute" | "Today" | "Hoy" | "Aujourd'hui" | "Hoje" | "Oggi";
329
352
  static get ToTime(): "zu" | "to" | "a" | "à" | "al";
330
353
  static get Time(): "Jetzt" | "Time" | "Ahora" | "Maintenant" | "Agora" | "Ora";
331
354
  static get Type(): "Typ" | "Type" | "Tipo";
@@ -367,5 +390,6 @@ export declare class SDKUI_Localizator {
367
390
  static get VisibleItems(): "sichtbare Elemente" | "Visible items" | "elementos visibles" | "éléments visibles" | "itens visíveis" | "Elementi visibili";
368
391
  static get WelcomeTo(): "Willkommen bei {{0}}" | "Welcome to {{0}}" | "Bienvenido a {{0}}" | "Bienvenue sur {{0}}" | "Bem-vindo à {{0}}" | "Benvenuto su {{0}}";
369
392
  static get WorkflowApproval(): "Workflow-Genehmigung" | "Workflow approval" | "Aprobación de flujo de trabajo" | "Approbation de workflow" | "Aprovação de fluxo de trabalho" | "Approvazione workflow";
393
+ static get WorkGroup(): "Arbeitsgruppe" | "Work Group" | "Grupo de Trabajo" | "Groupe de travail" | "Grupo de Trabalho" | "Gruppo di lavoro";
370
394
  static get Yes(): "Ja" | "Yes" | "Sí" | "Oui" | "Sim" | "Sì";
371
395
  }