@topconsultnpm/sdkui-react 6.19.0-test2 → 6.20.0-dev1.10

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 (38) hide show
  1. package/lib/components/base/TMAccordion.js +2 -2
  2. package/lib/components/choosers/TMDynDataListItemChooser.js +5 -4
  3. package/lib/components/editors/TMHtmlEditor.js +1 -1
  4. package/lib/components/editors/TMMetadataValues.js +34 -12
  5. package/lib/components/features/assistant/ToppyDraggableHelpCenter.js +74 -63
  6. package/lib/components/features/documents/TMDcmtBlog.d.ts +1 -7
  7. package/lib/components/features/documents/TMDcmtBlog.js +29 -2
  8. package/lib/components/features/documents/TMDcmtForm.d.ts +1 -0
  9. package/lib/components/features/documents/TMDcmtForm.js +24 -34
  10. package/lib/components/features/documents/TMDcmtPreview.js +93 -64
  11. package/lib/components/features/search/TMSavedQuerySelector.js +1 -1
  12. package/lib/components/features/search/TMSearchQueryPanel.js +1 -1
  13. package/lib/components/features/search/TMSearchResult.js +249 -58
  14. package/lib/components/features/search/TMSearchResultCheckoutInfoForm.d.ts +8 -0
  15. package/lib/components/features/search/TMSearchResultCheckoutInfoForm.js +129 -0
  16. package/lib/components/features/search/TMSearchResultsMenuItems.d.ts +2 -2
  17. package/lib/components/features/search/TMSearchResultsMenuItems.js +41 -63
  18. package/lib/components/features/search/TMTreeSelector.js +1 -1
  19. package/lib/components/features/search/TMViewHistoryDcmt.d.ts +18 -0
  20. package/lib/components/features/search/TMViewHistoryDcmt.js +285 -0
  21. package/lib/components/grids/TMRecentsManager.js +1 -1
  22. package/lib/helper/SDKUI_Globals.d.ts +3 -7
  23. package/lib/helper/SDKUI_Globals.js +1 -0
  24. package/lib/helper/SDKUI_Localizator.d.ts +16 -0
  25. package/lib/helper/SDKUI_Localizator.js +209 -6
  26. package/lib/helper/TMIcons.d.ts +3 -1
  27. package/lib/helper/TMIcons.js +9 -1
  28. package/lib/helper/TMUtils.d.ts +3 -1
  29. package/lib/helper/TMUtils.js +51 -0
  30. package/lib/helper/checkinCheckoutManager.d.ts +55 -0
  31. package/lib/helper/checkinCheckoutManager.js +266 -0
  32. package/lib/helper/helpers.d.ts +7 -0
  33. package/lib/helper/helpers.js +37 -5
  34. package/lib/helper/index.d.ts +1 -0
  35. package/lib/helper/index.js +1 -0
  36. package/lib/helper/queryHelper.js +13 -1
  37. package/lib/services/platform_services.d.ts +1 -1
  38. package/package.json +52 -52
@@ -105,7 +105,7 @@ const TMRecentsManager = ({ deviceType, mruTIDs, currentMruTID, accessFilter = '
105
105
  setInfoDTD(undefined);
106
106
  });
107
107
  const isMobile = deviceType === DeviceType.MOBILE;
108
- return (_jsxs(_Fragment, { children: [_jsxs("div", { style: { overflowY: isMobile ? 'auto' : undefined, display: 'flex', flexDirection: 'column', padding: '5px', width: '100%' }, children: [_jsx(StyledRecentTidItem, { id: `tid-${0}`, "$isMobile": isMobile, onClick: () => { setShowDcmtTypeChooser(true); }, children: _jsx("div", { style: { display: 'flex', alignItems: 'center', justifyContent: 'center', width: '100%' }, children: _jsx("p", { style: {
108
+ return (_jsxs(_Fragment, { children: [_jsxs("div", { onContextMenu: (e) => e.preventDefault(), style: { overflowY: isMobile ? 'auto' : undefined, display: 'flex', flexDirection: 'column', padding: '5px', width: '100%' }, children: [_jsx(StyledRecentTidItem, { id: `tid-${0}`, "$isMobile": isMobile, onClick: () => { setShowDcmtTypeChooser(true); }, children: _jsx("div", { style: { display: 'flex', alignItems: 'center', justifyContent: 'center', width: '100%' }, children: _jsx("p", { style: {
109
109
  color: TMColors.primaryColor,
110
110
  fontSize: '1rem',
111
111
  fontWeight: 600,
@@ -1,4 +1,5 @@
1
1
  import { InvoiceRetrieveFormats, ObjectClasses, OrderRetrieveFormats } from "@topconsultnpm/sdk-ts";
2
+ import { CheckoutInfo } from "./checkinCheckoutManager";
2
3
  export declare const dcmtsFileCacheDownload: Map<string, File>;
3
4
  export declare const dcmtsFileCachePreview: Map<string, File>;
4
5
  export declare const CACHE_SIZE_LIMIT = 10;
@@ -16,7 +17,8 @@ export declare class UserSettings {
16
17
  searchSettings: SearchSettings;
17
18
  themeSettings: ThemeSettings;
18
19
  dcmtFormSettings: DcmtFormSettings[];
19
- wgDraftCheckoutInfo: WgDraftCheckoutInfo[];
20
+ wgDraftCheckoutInfo: CheckoutInfo[];
21
+ dcmtCheckoutInfo: CheckoutInfo[];
20
22
  defaultCheckInOutFolder: string;
21
23
  constructor(skipCssUpdate?: boolean);
22
24
  /** Load settings from local storage or other sources */
@@ -85,12 +87,6 @@ export declare class DcmtFormSettings {
85
87
  };
86
88
  };
87
89
  }
88
- export interface WgDraftCheckoutInfo {
89
- DID: string;
90
- TID: string;
91
- checkoutFolder: string;
92
- checkoutName: string;
93
- }
94
90
  export declare class SDKUI_Globals {
95
91
  static userSettings: UserSettings;
96
92
  }
@@ -20,6 +20,7 @@ export class UserSettings {
20
20
  this.themeSettings = new ThemeSettings(true);
21
21
  this.dcmtFormSettings = [];
22
22
  this.wgDraftCheckoutInfo = [];
23
+ this.dcmtCheckoutInfo = [];
23
24
  this.defaultCheckInOutFolder = DEFAULT_CHECK_IN_OUT_FOLDER;
24
25
  this.themeSettings = new ThemeSettings(skipCssUpdate);
25
26
  }
@@ -33,6 +33,7 @@ export declare class SDKUI_Localizator {
33
33
  static get AllPriorities(): "Alle Prioritäten" | "All priorities" | "Todas las prioridades" | "Toutes les priorités" | "Todas as prioridades" | "Tutte le priorità";
34
34
  static get AllStates(): "Alle Staaten" | "All states" | "Todos los estados" | "Tous les états" | "Todos os estados" | "Tutti gli stati";
35
35
  static get Alphabetic(): "Alphabetisch" | "Alphabetic" | "Alfabético" | "Alphabétique" | "Alfabética" | "Alfabetico";
36
+ static get Anomalies(): "Anomalien" | "Anomalies" | "Anomalías" | "Anomalias" | "Anomalie";
36
37
  static get Answer(): "Antwort" | "Answer" | "Respuesta" | "Réponse" | "Resposta" | "Risposta";
37
38
  static get AnswerTooltip(): "Die Antwort kann nur bearbeitet werden, wenn der Aktivitätsstatus \"Abgeschlossen\", \"Ausstehend\" oder \"Verschoben\" ist." | "The answer can be edited only if the activity status is \"Completed\", \"Pending\", or \"Deferred\"." | "La respuesta solo se puede editar si el estado de la actividad es \"Completada\", \"Pendiente\" o \"Pospuesta\"." | "La réponse peut être modifiée uniquement si l'état de l’activité est \"Terminée\", \"En attente\" ou \"Reportée\"." | "A resposta só pode ser editada se o estado da atividade for \"Concluída\", \"Pendente\" ou \"Adiada\"." | "La risposta può essere modificata solo se lo stato dell’attività è \"Completata\", \"In attesa\" o \"Rinviata\".";
38
39
  static get Application(): "Anwendung" | "Application" | "Aplicación" | "Aplicação" | "Applicazione";
@@ -88,8 +89,12 @@ export declare class SDKUI_Localizator {
88
89
  static get ChangePassword(): "Kennwort ändern" | "Change password" | "Cambiar la contraseña" | "Changer le mot de passe" | "Alterar a senha" | "Cambia password";
89
90
  static get CharactersRemaining(): "verbleibende Zeichen" | "characters remaining" | "caracteres restantes" | "caractères restants" | "caratteri rimanenti";
90
91
  static get CheckIn(): "Check in" | "Enregistrement";
92
+ static get CheckInElementConfirm(): string;
93
+ static get CheckInOutSettingsNotice(): string;
94
+ static get CheckInSuccessMessage(): string;
91
95
  static get Checkmark(): "Häkchen" | "Checkmark" | "Marca de verificación" | "Coche" | "Marca de verificação" | "Spunta";
92
96
  static get CheckOut(): "Check out" | "Extraction";
97
+ static get CheckoutInfo(): string;
93
98
  static get ChooseFolder(): string;
94
99
  static get ChooseGroup(): string;
95
100
  static get ChronologyDelete(): "Physische Löschung der Chronologie" | "Physical deletion of chronology" | "Eliminación física de la cronología" | "Suppression physique de la chronologie" | "Exclusão física da cronologia" | "Cancellazione fisica della cronologia";
@@ -117,6 +122,7 @@ export declare class SDKUI_Localizator {
117
122
  static get ContinueOperation(): "Fortfahren?" | "Continue ?" | "¿Continuar?" | "Continuer?" | "Continuar?" | "Continuare?";
118
123
  static get CopiedSuccessfully(): "In die Zwischenablage kopieren" | "Copied in clipboard successfully" | "Copiado en el portapapeles con éxito" | "Copié dans le presse-papiers avec succès" | "CCopiado na área de transferência com sucesso" | "Copiato negli appunti con successo";
119
124
  static get Copy(): string;
125
+ static get CopyCheckoutPath(): string;
120
126
  static get CopyToArchived(): string;
121
127
  static get CopyToArchivedDocuments(): string;
122
128
  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";
@@ -127,6 +133,7 @@ export declare class SDKUI_Localizator {
127
133
  static get CreateContextualTask(): string;
128
134
  static get CreationTime(): "Erstellungsdatum" | "Creation Time" | "Fecha creación" | "Date de création" | "Data de criação" | "Data creazione";
129
135
  static get CultureID(): "Sprache" | "Language" | "Idioma" | "Lingue" | "Língua" | "Lingua";
136
+ static get Current(): "Aktuell" | "Current" | "Actual" | "Actuel" | "Atual" | "Corrente";
130
137
  static get CurrentUserExtract(): string;
131
138
  static get Cut(): "Ausschneiden" | "Cut" | "Cortar" | "Couper" | "Taglia";
132
139
  static get Date(): "Datum" | "Date" | "fecha" | "Data";
@@ -140,6 +147,7 @@ export declare class SDKUI_Localizator {
140
147
  static get DcmtTypeSelect(): "Wählen Sie einen Dokumenttyp aus" | "Select a document type" | "Seleccione un tipo de documento" | "Sélectionnez un type de document" | "Selecione um tipo de documento" | "Selezionare un tipo documento";
141
148
  static get DcmtTypeSelectOrQuickSearch(): "Wählen Sie einen Dokumenttyp oder eine Schnellsuche aus" | "Select a document type or quick search" | "Seleccione un tipo de documento o búsqueda rápida" | "Sélectionnez un type de document ou une recherche rapide" | "Selecione um tipo de documento ou pesquisa rápida" | "Selezionare un tipo documento o ricerca rapida";
142
149
  static get Default(): "Standard" | "Default" | "Predeterminado" | "Defaultão";
150
+ static get DefaultFolder(): string;
143
151
  static get Details(): "Einzelheiten" | "Details" | "Detalles" | "Détails" | "detalhes" | "Dettagli";
144
152
  static get Delete(): "Löschen" | "Delete" | "Borrar" | "Supprimer" | "Excluir" | "Elimina";
145
153
  static get Delete_ConfirmFor1(): "Löschen Sie '{{0}}'?" | "Delete '{{0}}'?" | "¿Eliminar '{{0}}'?" | "Voulez-vous éliminer '{{0}}'?" | "Eliminar '{{0}}'?" | "Eliminare '{{0}}'?";
@@ -211,6 +219,7 @@ export declare class SDKUI_Localizator {
211
219
  static get EditorConfiguration(): string;
212
220
  static get ElectronicInvoice(): "Elektronische Rechnung" | "Electronic invoice" | "Factura electrónica" | "Facture électronique" | "Fatura eletrônica" | "Fattura elettronica";
213
221
  static get ElectronicOrder(): "Elektronische Bestellung" | "Electronic order" | "Orden electrónica" | "Commande électronique" | "Pedido eletrônico" | "Ordine elettronico";
222
+ static get ElementNameConventionError(): string;
214
223
  static get EmailIsNotValid(): "Dies ist keine gültige e-mail Adresse" | "This is not a valid email address" | "Esta no es una dirección de correo electrónico válida." | "Cette adresse email n'est pas valide" | "Este não é um endereço de e-mail válido" | "Questo non è un indirizzo e-mail valido";
215
224
  static get EndDateMatchesToday(): "Das Ablaufdatum entspricht dem heutigen Datum" | "The expiration date matches today's date" | "La fecha de vencimiento coincide con la fecha de hoy" | "La date d'expiration correspond à la date d'aujourd'hui" | "A data de expiração coincide com a data de hoje" | "La data di scadenza coincide con la data odierna";
216
225
  static get EndDateSetForTomorrow(): "Das Ablaufdatum ist für morgen festgelegt" | "The expiration date is set for tomorrow" | "La fecha de vencimiento está fijada para mañana" | "La date d'expiration est fixée pour demain" | "A data de expiração está marcada para amanhã" | "La data di scadenza è imminente (ovvero fissata per domani)";
@@ -231,6 +240,7 @@ export declare class SDKUI_Localizator {
231
240
  static get ExtractedFromOtherUser(): string;
232
241
  static get ExtractedOn(): "Ausgezogen am" | "Extracted on" | "Extraído el" | "Extrait le" | "Extraído em" | "Estratto il";
233
242
  static get EvaluateResult(): "Bewerten Sie das Ergebnis" | "Evaluate result" | "Valorar el resultado" | "Évalue les résultats" | "Avalia os resultados" | "Valuta il risultato";
243
+ static get Expected(): "Erwartet" | "Expected" | "Esperado" | "Attendu" | "Atteso";
234
244
  static get Expiration(): "Ablaufdatum" | "Expiration" | "Fecha de expiración" | "Date d'expiration" | "Data de expiração" | "Scadenza";
235
245
  static get ExpertMode(): "Expertenmodus" | "Expert mode" | "Modo experto" | "Mode expert" | "Modo especialista" | "Modalità esperto";
236
246
  static get Expiring(): "Ablaufend" | "Expiring" | "Por vencer" | "Expirant" | "Vencendo" | "In scadenza";
@@ -258,6 +268,7 @@ export declare class SDKUI_Localizator {
258
268
  static get FileManager_QuestionAlreadyExistsFile(): "Ziel enthält bereits eine Datei mit der Bezeichnung {{0}}, ersetzen durch die neue Datei?" | "The destination already contains a file called {{0}}, replace with the new file?" | "El destino ya contiene un archivo llamado {{0}}, ¿sustituir con el nuevo archivo?" | "La destination contient déjà un fichier appelé {{0}}, remplacer avec le nouveau fichier?" | "O destino já contém um ficheiro chamado {{0}}, substitua com o novo arquivo?" | "La destinazione contiene già un file denominato {{0}}, sostituire con il nuovo file?";
259
269
  static get FileManager_QuestionAlreadyExistsFiles(): "Ziel enthält {{0}} Datei mit dem gleichen Namen, ersetzen durch neue Dateien?" | "Destination contains {{0}} files with the same name, replace with new files?" | "El destino contiene {{0}} archivos con el mismo nombre, ¿sustituir con los nuevos archivos?" | "La destination contient {{0}} fichier portant le même nom, remplacer avec les nouveaux fichiers?" | "O destino contém ficheiros {{0}} com o mesmo nome, substitua por novos arquivos?" | "La destinazione contiene {{0}} file con lo stesso nome, sostituire con i nuovi file?";
260
270
  static get FileUpload(): "Datei hochladen" | "File upload" | "Carga de archivo" | "Téléchargement de fichier" | "Carregamento de arquivo" | "Caricamento File";
271
+ static get Folder(): string;
261
272
  static get FolderExist(): "Ordner existiert bereits. Bitte versuchen Sie einen anderen Namen" | "Folder already exists. Please try another name" | "La carpeta ya existe. Intente con otro nombre." | "Le dossier existe déjà. Veuillez essayer un autre nom" | "A pasta já existe. Por favor tente outro nome" | "La cartella esiste già. Prova un altro nome";
262
273
  static get FolderIsEmpty(): string;
263
274
  static get ForgetPassword(): "Passwort vergessen" | "Forgot password" | "Has olvidado tu contraseña" | "Mot de passe oublié" | "Esqueceu sua senha" | "Password dimenticata";
@@ -297,6 +308,7 @@ export declare class SDKUI_Localizator {
297
308
  static get HideMetadata(): string;
298
309
  static get HideSearch(): "Suche ausblenden" | "Hide search" | "Ocultar búsqueda" | "Masquer la recherche" | "Ocultar pesquisa" | "Nascondi ricerca";
299
310
  static get High(): "Hoch" | "High" | "Alta" | "Élevée";
311
+ static get History(): string;
300
312
  static get HistoryActionLabel(): string;
301
313
  static get HistoryLabel(): string;
302
314
  static get ID_Hide(): "Ausblenden ID" | "Hide ID" | "Ocultar ID" | "Masquer ID" | "Nascondi ID";
@@ -316,6 +328,7 @@ export declare class SDKUI_Localizator {
316
328
  static get Interrupt(): "Unterbrechen" | "Interrupt" | "interrumpir" | "Interrompre" | "Interromper" | "Interrompere";
317
329
  static get Interval(): "Intervall" | "Interval" | "Intervalo" | "Intervalle" | "Intervallo";
318
330
  static get Invalid_File(): "Ungültige datei" | "Invalid file" | "Archivo inválido" | "Fichier non valide" | "Arquivo inválido" | "File non valido";
331
+ static get InvalidDcmt(): "Ungültiges Dokument" | "Invalid document" | "Documento inválido" | "Document non valide" | "Documento non valido";
319
332
  static get InvoiceRetrieveFormat(): "Exportieren Sie die Rechnung im folgenden Format" | "Export invoice in the following format" | "Exportar la factura en el siguiente formato" | "Exportez la facture au format suivant" | "Exporte a fatura no seguinte formato" | "Esporta la fattura nel seguente formato";
320
333
  static get LandingPage(): string;
321
334
  static get LastRead(): string;
@@ -486,6 +499,7 @@ export declare class SDKUI_Localizator {
486
499
  static get Previous(): "Vorherige" | "Previous" | "Anterior" | "Précédent" | "Precedente";
487
500
  static get Priority(): string;
488
501
  static get PriorityLegend(): "Legende der Prioritäten" | "Priority Legend" | "Leyenda de prioridades" | "Légende des priorités" | "Lenda das prioridades" | "Legenda delle priorità";
502
+ static get ProceedAnyway(): "Dennoch fortfahren?" | "Proceed anyway?" | "¿Proceder de todos modos?" | "Procéder quand même ?" | "Prosseguir mesmo assim?" | "Procedere comunque?";
489
503
  static get ProcessedItems(): "Durchdachte Elemente" | "Processed items" | "Elementos elaborados" | "Items traités" | "Itens processados" | "Elementi elaborati";
490
504
  static get Properties(): "Eigenschaften" | "Properties" | "Propiedades" | "Propriétés" | "Propriedades" | "Proprietà";
491
505
  static get QueryClear(): "Query bereinigen" | "Clear query" | "Limpiar consulta" | "Efface query" | "Limpar query" | "Pulisci query";
@@ -643,6 +657,7 @@ export declare class SDKUI_Localizator {
643
657
  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)";
644
658
  static get UBLViewFormats_NSO_PDF(): "NSO Style Sheet (PDF)" | "Hoja de estilo NSO (PDF)" | "Feuille de style NSO (PDF)" | "Folha de estilo NSO (PDF)" | "Foglio di stile NSO (PDF)";
645
659
  static get UnableToGetUpdatedDocumentContent(): "Aktualisierter Dokumentinhalt kann nicht abgerufen werden" | "Unable to get updated document content" | "No se puede obtener el contenido actualizado del documento" | "Impossible d'obtenir le contenu mis à jour du document" | "Não é possível obter o conteúdo atualizado do documento" | "Impossibile ottenere il contenuto aggiornato del documento";
660
+ static get UndefinedText(): string;
646
661
  static get Undo(): "Änderungen rückgängig machen" | "Undo" | "Anular modificaciones" | "Annule les modifications" | "Anular alterações" | "Annulla modifiche";
647
662
  static get Unfollow(): "Nicht mehr folgen" | "Unfollow" | "Dejar de seguir" | "Ne plus suivre" | "Deixar de seguir" | "Non seguire più";
648
663
  static get Unmatch(): "Zuordnung aufheben" | "Unmatch" | "Desemparejar" | "Dissocier" | "Descorresponder" | "Disabbina";
@@ -697,6 +712,7 @@ export declare class SDKUI_Localizator {
697
712
  static get WorkflowAppName(): "Name der Anwendung" | "Application name" | "Nombre de aplicación" | "Nom de l'application" | "Nome da aplicação" | "Nome applicazione";
698
713
  static get WorkflowAppType(): "Anwendungsart" | "Application type" | "Tipo de aplicación" | "Type d'application" | "Tipo de aplicação" | "Tipo applicazione";
699
714
  static get WorkflowConnectionEdit(): "Verbindung bearbeiten" | "Edit Connection" | "Editar conexión" | "Modifier la connexion" | "Editar ligação" | "Modifica Connessione";
715
+ static get WorkflowCtrl(): "Workflow-Kontrolle" | "Workflow control" | "Control de flujo de trabajo" | "Contrôle de workflow" | "Controle de fluxo de trabalho" | "Controllo workflow";
700
716
  static get WorkflowDiagramConnectionInvalidNodes(): "Ungültige Verbindung: Quell- oder Zielknoten nicht gefunden." | "Invalid connection: source or sink node not found." | "Conexión no válida: nodo origen o destino no encontrado." | "Connexion invalide : nœud source ou destination introuvable." | "Conexão inválida: nó de origem ou destino não encontrado." | "Connessione non valida: nodo sorgente o destinazione non trovato.";
701
717
  static get WorkflowRestoreDiagram(): "Diagramm wiederherstellen" | "Restore diagram" | "Restaurar diagrama" | "Restaurer le diagramme" | "Ripristina diagramma";
702
718
  static get WorkflowRestoreDiagramMessage(): "Möchten Sie das ursprüngliche Diagramm wiederherstellen? Alle nicht gespeicherten Änderungen gehen verloren." | "Are you sure you want to restore the initial diagram? All unsaved changes will be lost." | "¿Está seguro de que desea restaurar el diagrama inicial? Se perderán todos los cambios no guardados." | "Êtes-vous sûr de vouloir restaurer le diagramme initial ? Toutes les modifications non enregistrées seront perdues." | "Tem certeza de que deseja restaurar o diagrama inicial? Todas as alterações não salvas serão perdidas." | "Sei sicuro di voler ripristinare il diagramma iniziale? Tutte le modifiche non salvate andranno perse.";
@@ -278,6 +278,16 @@ export class SDKUI_Localizator {
278
278
  default: return "Alfabetico";
279
279
  }
280
280
  }
281
+ static get Anomalies() {
282
+ switch (this._cultureID) {
283
+ case CultureIDs.De_DE: return "Anomalien";
284
+ case CultureIDs.En_US: return "Anomalies";
285
+ case CultureIDs.Es_ES: return "Anomalías";
286
+ case CultureIDs.Fr_FR: return "Anomalies";
287
+ case CultureIDs.Pt_PT: return "Anomalias";
288
+ default: return "Anomalie";
289
+ }
290
+ }
281
291
  static get Answer() {
282
292
  switch (this._cultureID) {
283
293
  case CultureIDs.De_DE: return "Antwort";
@@ -748,11 +758,11 @@ export class SDKUI_Localizator {
748
758
  static get CancelCheckOut() {
749
759
  switch (this._cultureID) {
750
760
  case CultureIDs.De_DE: return "Check-out abbrechen";
751
- case CultureIDs.En_US: return "Cancel Check Out";
761
+ case CultureIDs.En_US: return "Cancel check Out";
752
762
  case CultureIDs.Es_ES: return "Cancelar check-out";
753
763
  case CultureIDs.Fr_FR: return "Annuler le check-out";
754
764
  case CultureIDs.Pt_PT: return "Cancelar check-out";
755
- default: return "Annulla Check out";
765
+ default: return "Annulla check out";
756
766
  }
757
767
  }
758
768
  static get CassettoDoganaleExportMRN() {
@@ -835,6 +845,55 @@ export class SDKUI_Localizator {
835
845
  default: return "Check in";
836
846
  }
837
847
  }
848
+ static get CheckInElementConfirm() {
849
+ switch (this._cultureID) {
850
+ case CultureIDs.De_DE:
851
+ return "Das Element '{{0}}' einchecken?";
852
+ case CultureIDs.En_US:
853
+ return "Check in the element '{{0}}'?";
854
+ case CultureIDs.Es_ES:
855
+ return "¿Realizar el check-in del elemento '{{0}}'?";
856
+ case CultureIDs.Fr_FR:
857
+ return "Effectuer le check-in de l’élément '{{0}}'?";
858
+ case CultureIDs.Pt_PT:
859
+ return "Efetuar o check-in do elemento '{{0}}'?";
860
+ default:
861
+ return "Eseguire il check-in dell’elemento '{{0}}'?";
862
+ }
863
+ }
864
+ static get CheckInOutSettingsNotice() {
865
+ switch (this._cultureID) {
866
+ case CultureIDs.De_DE:
867
+ return "Sie können die Einstellungen für “Suche → Check in/Check out” jederzeit ändern.";
868
+ case CultureIDs.En_US:
869
+ return "You can modify the settings for “Search → Check in/Check out” at any time.";
870
+ case CultureIDs.Es_ES:
871
+ return "Puedes modificar la configuración de “Búsqueda → Check in/Check out” en cualquier momento.";
872
+ case CultureIDs.Fr_FR:
873
+ return "Vous pouvez modifier les paramètres relatifs à « Recherche → Check in/Check out » à tout moment.";
874
+ case CultureIDs.Pt_PT:
875
+ return "Você pode modificar as configurações de “Pesquisa → Check in/Check out” a qualquer momento.";
876
+ case CultureIDs.It_IT:
877
+ default:
878
+ return "Puoi modificare questa impostazione in “Ricerca → Check in/Check out” in qualsiasi momento.";
879
+ }
880
+ }
881
+ static get CheckInSuccessMessage() {
882
+ switch (this._cultureID) {
883
+ case CultureIDs.De_DE:
884
+ return "Check-in erfolgreich abgeschlossen! Löschen Sie die Datei aus dem Dateisystem.";
885
+ case CultureIDs.En_US:
886
+ return "Check-in completed successfully! Delete the document from the file system.";
887
+ case CultureIDs.Es_ES:
888
+ return "¡Check-in completado con éxito! Elimine el archivo del sistema de archivos.";
889
+ case CultureIDs.Fr_FR:
890
+ return "Check-in terminé avec succès ! Supprimez le fichier du système de fichiers.";
891
+ case CultureIDs.Pt_PT:
892
+ return "Check-in concluído com sucesso! Elimine o ficheiro do sistema de ficheiros.";
893
+ default:
894
+ return "Check-in completato con successo! Cancella il documento dal file system.";
895
+ }
896
+ }
838
897
  static get Checkmark() {
839
898
  switch (this._cultureID) {
840
899
  case CultureIDs.De_DE: return "Häkchen";
@@ -855,6 +914,22 @@ export class SDKUI_Localizator {
855
914
  default: return "Check out";
856
915
  }
857
916
  }
917
+ static get CheckoutInfo() {
918
+ switch (this._cultureID) {
919
+ case CultureIDs.De_DE:
920
+ return "Informationen zum Check out";
921
+ case CultureIDs.En_US:
922
+ return "Check out Information";
923
+ case CultureIDs.Es_ES:
924
+ return "Información sobre el pago";
925
+ case CultureIDs.Fr_FR:
926
+ return "Informations sur le paiement";
927
+ case CultureIDs.Pt_PT:
928
+ return "Informações sobre o check out";
929
+ default:
930
+ return "Informazioni sul check out";
931
+ }
932
+ }
858
933
  static get ChooseFolder() {
859
934
  switch (this._cultureID) {
860
935
  case CultureIDs.De_DE: return "Ordner auswählen";
@@ -1131,6 +1206,16 @@ export class SDKUI_Localizator {
1131
1206
  default: return "Copia";
1132
1207
  }
1133
1208
  }
1209
+ static get CopyCheckoutPath() {
1210
+ switch (this._cultureID) {
1211
+ case CultureIDs.De_DE: return "Checkout-Pfad kopieren";
1212
+ case CultureIDs.En_US: return "Copy checkout path";
1213
+ case CultureIDs.Es_ES: return "Copiar ruta de check out";
1214
+ case CultureIDs.Fr_FR: return "Copier le chemin de check out";
1215
+ case CultureIDs.Pt_PT: return "Copiar caminho de check out";
1216
+ default: return "Copia path di check out";
1217
+ }
1218
+ }
1134
1219
  static get CopyToArchived() {
1135
1220
  switch (this._cultureID) {
1136
1221
  case CultureIDs.De_DE: return "In Archivierte kopieren";
@@ -1231,6 +1316,16 @@ export class SDKUI_Localizator {
1231
1316
  default: return "Lingua";
1232
1317
  }
1233
1318
  }
1319
+ static get Current() {
1320
+ switch (this._cultureID) {
1321
+ case CultureIDs.De_DE: return "Aktuell";
1322
+ case CultureIDs.En_US: return "Current";
1323
+ case CultureIDs.Es_ES: return "Actual";
1324
+ case CultureIDs.Fr_FR: return "Actuel";
1325
+ case CultureIDs.Pt_PT: return "Atual";
1326
+ default: return "Corrente";
1327
+ }
1328
+ }
1234
1329
  static get CurrentUserExtract() {
1235
1330
  switch (this._cultureID) {
1236
1331
  case CultureIDs.De_DE: return "Auszug aus dem aktuellen Benutzer und änderbar";
@@ -1361,6 +1456,22 @@ export class SDKUI_Localizator {
1361
1456
  default: return "Default";
1362
1457
  }
1363
1458
  }
1459
+ static get DefaultFolder() {
1460
+ switch (this._cultureID) {
1461
+ case CultureIDs.De_DE:
1462
+ return "Standardordner";
1463
+ case CultureIDs.En_US:
1464
+ return "Default folder";
1465
+ case CultureIDs.Es_ES:
1466
+ return "Carpeta predeterminada";
1467
+ case CultureIDs.Fr_FR:
1468
+ return "Dossier par défaut";
1469
+ case CultureIDs.Pt_PT:
1470
+ return "Pasta padrão";
1471
+ default:
1472
+ return "Cartella di default";
1473
+ }
1474
+ }
1364
1475
  static get Details() {
1365
1476
  switch (this._cultureID) {
1366
1477
  case CultureIDs.De_DE: return "Einzelheiten";
@@ -2034,6 +2145,22 @@ export class SDKUI_Localizator {
2034
2145
  default: return "Ordine elettronico";
2035
2146
  }
2036
2147
  }
2148
+ static get ElementNameConventionError() {
2149
+ switch (this._cultureID) {
2150
+ case CultureIDs.De_DE:
2151
+ return "Der Name des Elements ist nicht konform";
2152
+ case CultureIDs.En_US:
2153
+ return "The element name does not comply";
2154
+ case CultureIDs.Es_ES:
2155
+ return "El nombre del elemento no es conforme";
2156
+ case CultureIDs.Fr_FR:
2157
+ return "Le nom de l’élément n’est pas conforme";
2158
+ case CultureIDs.Pt_PT:
2159
+ return "O nome do elemento não está conforme";
2160
+ default:
2161
+ return "Il nome dell’elemento non è conforme";
2162
+ }
2163
+ }
2037
2164
  static get EmailIsNotValid() {
2038
2165
  switch (this._cultureID) {
2039
2166
  case CultureIDs.De_DE: return "Dies ist keine gültige e-mail Adresse";
@@ -2153,21 +2280,21 @@ export class SDKUI_Localizator {
2153
2280
  static get ExecuteCancelCheckOutQuestion() {
2154
2281
  switch (this._cultureID) {
2155
2282
  case CultureIDs.De_DE: return "Check-out abbrechen?";
2156
- case CultureIDs.En_US: return "Cancel Check Out?";
2283
+ case CultureIDs.En_US: return "Cancel check out?";
2157
2284
  case CultureIDs.Es_ES: return "¿Cancelar el check-out?";
2158
2285
  case CultureIDs.Fr_FR: return "Annuler le check-out ?";
2159
2286
  case CultureIDs.Pt_PT: return "Cancelar o check-out?";
2160
- default: return "Annullare il Check out?";
2287
+ default: return "Annullare il check out?";
2161
2288
  }
2162
2289
  }
2163
2290
  static get ExecuteCheckOutQuestion() {
2164
2291
  switch (this._cultureID) {
2165
2292
  case CultureIDs.De_DE: return "Check-out durchführen?";
2166
- case CultureIDs.En_US: return "Perform Check Out?";
2293
+ case CultureIDs.En_US: return "Perform check out?";
2167
2294
  case CultureIDs.Es_ES: return "¿Realizar el check-out?";
2168
2295
  case CultureIDs.Fr_FR: return "Effectuer le check-out ?";
2169
2296
  case CultureIDs.Pt_PT: return "Executar o check-out?";
2170
- default: return "Eseguire il Check out?";
2297
+ default: return "Eseguire il check out?";
2171
2298
  }
2172
2299
  }
2173
2300
  static get ExportDataListsDescriptionField() {
@@ -2240,6 +2367,16 @@ export class SDKUI_Localizator {
2240
2367
  default: return "Valuta il risultato";
2241
2368
  }
2242
2369
  }
2370
+ static get Expected() {
2371
+ switch (this._cultureID) {
2372
+ case CultureIDs.De_DE: return "Erwartet";
2373
+ case CultureIDs.En_US: return "Expected";
2374
+ case CultureIDs.Es_ES: return "Esperado";
2375
+ case CultureIDs.Fr_FR: return "Attendu";
2376
+ case CultureIDs.Pt_PT: return "Esperado";
2377
+ default: return "Atteso";
2378
+ }
2379
+ }
2243
2380
  static get Expiration() {
2244
2381
  switch (this._cultureID) {
2245
2382
  case CultureIDs.De_DE: return "Ablaufdatum";
@@ -2510,6 +2647,16 @@ export class SDKUI_Localizator {
2510
2647
  default: return "Caricamento File";
2511
2648
  }
2512
2649
  }
2650
+ static get Folder() {
2651
+ switch (this._cultureID) {
2652
+ case CultureIDs.De_DE: return "Ordner";
2653
+ case CultureIDs.En_US: return "Folder";
2654
+ case CultureIDs.Es_ES: return "Carpeta";
2655
+ case CultureIDs.Fr_FR: return "Dossier";
2656
+ case CultureIDs.Pt_PT: return "Diretório";
2657
+ default: return "Cartella";
2658
+ }
2659
+ }
2513
2660
  static get FolderExist() {
2514
2661
  switch (this._cultureID) {
2515
2662
  case CultureIDs.De_DE: return "Ordner existiert bereits. Bitte versuchen Sie einen anderen Namen";
@@ -2899,6 +3046,16 @@ export class SDKUI_Localizator {
2899
3046
  default: return "Alta";
2900
3047
  }
2901
3048
  }
3049
+ static get History() {
3050
+ switch (this._cultureID) {
3051
+ case CultureIDs.De_DE: return "Chronik";
3052
+ case CultureIDs.En_US: return "History";
3053
+ case CultureIDs.Es_ES: return "Historial";
3054
+ case CultureIDs.Fr_FR: return "Historique";
3055
+ case CultureIDs.Pt_PT: return "Histórico";
3056
+ default: return "Cronologia";
3057
+ }
3058
+ }
2902
3059
  static get HistoryActionLabel() {
2903
3060
  switch (this._cultureID) {
2904
3061
  case CultureIDs.De_DE: return "Archivieren";
@@ -3089,6 +3246,16 @@ export class SDKUI_Localizator {
3089
3246
  default: return "File non valido";
3090
3247
  }
3091
3248
  }
3249
+ static get InvalidDcmt() {
3250
+ switch (this._cultureID) {
3251
+ case CultureIDs.De_DE: return "Ungültiges Dokument";
3252
+ case CultureIDs.En_US: return "Invalid document";
3253
+ case CultureIDs.Es_ES: return "Documento inválido";
3254
+ case CultureIDs.Fr_FR: return "Document non valide";
3255
+ case CultureIDs.Pt_PT: return "Documento inválido";
3256
+ default: return "Documento non valido";
3257
+ }
3258
+ }
3092
3259
  static get InvoiceRetrieveFormat() {
3093
3260
  switch (this._cultureID) {
3094
3261
  case CultureIDs.De_DE: return "Exportieren Sie die Rechnung im folgenden Format";
@@ -4781,6 +4948,16 @@ export class SDKUI_Localizator {
4781
4948
  default: return "Legenda delle priorità";
4782
4949
  }
4783
4950
  }
4951
+ static get ProceedAnyway() {
4952
+ switch (this._cultureID) {
4953
+ case CultureIDs.De_DE: return "Dennoch fortfahren?";
4954
+ case CultureIDs.En_US: return "Proceed anyway?";
4955
+ case CultureIDs.Es_ES: return "¿Proceder de todos modos?";
4956
+ case CultureIDs.Fr_FR: return "Procéder quand même ?";
4957
+ case CultureIDs.Pt_PT: return "Prosseguir mesmo assim?";
4958
+ default: return "Procedere comunque?";
4959
+ }
4960
+ }
4784
4961
  static get ProcessedItems() {
4785
4962
  switch (this._cultureID) {
4786
4963
  case CultureIDs.De_DE: return "Durchdachte Elemente";
@@ -6359,6 +6536,22 @@ export class SDKUI_Localizator {
6359
6536
  default: return "Impossibile ottenere il contenuto aggiornato del documento";
6360
6537
  }
6361
6538
  }
6539
+ static get UndefinedText() {
6540
+ switch (this._cultureID) {
6541
+ case CultureIDs.De_DE:
6542
+ return "nicht angegeben";
6543
+ case CultureIDs.En_US:
6544
+ return "not specified";
6545
+ case CultureIDs.Es_ES:
6546
+ return "no especificado";
6547
+ case CultureIDs.Fr_FR:
6548
+ return "non spécifié";
6549
+ case CultureIDs.Pt_PT:
6550
+ return "não especificado";
6551
+ default:
6552
+ return "non definita";
6553
+ }
6554
+ }
6362
6555
  static get Undo() {
6363
6556
  switch (this._cultureID) {
6364
6557
  case CultureIDs.De_DE: return "Änderungen rückgängig machen";
@@ -6905,6 +7098,16 @@ export class SDKUI_Localizator {
6905
7098
  default: return "Modifica Connessione";
6906
7099
  }
6907
7100
  }
7101
+ static get WorkflowCtrl() {
7102
+ switch (this._cultureID) {
7103
+ case CultureIDs.De_DE: return "Workflow-Kontrolle";
7104
+ case CultureIDs.En_US: return "Workflow control";
7105
+ case CultureIDs.Es_ES: return "Control de flujo de trabajo";
7106
+ case CultureIDs.Fr_FR: return "Contrôle de workflow";
7107
+ case CultureIDs.Pt_PT: return "Controle de fluxo de trabalho";
7108
+ default: return "Controllo workflow";
7109
+ }
7110
+ }
6908
7111
  static get WorkflowDiagramConnectionInvalidNodes() {
6909
7112
  switch (this._cultureID) {
6910
7113
  case CultureIDs.De_DE: return "Ungültige Verbindung: Quell- oder Zielknoten nicht gefunden.";
@@ -81,6 +81,7 @@ declare function IconInfo(props: React.SVGProps<SVGSVGElement>): import("react/j
81
81
  declare function IconSuccess(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
82
82
  declare function IconAlarmPlus(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
83
83
  declare function IconHourglass(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
84
+ declare function IconNewSignature(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
84
85
  declare function IconNone(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
85
86
  declare function IconNotStarted(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
86
87
  declare function IconProgress(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
@@ -271,6 +272,7 @@ export declare function IconArchiveDetail(props: React.SVGProps<SVGSVGElement>):
271
272
  export declare function IconArchiveMaster(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
272
273
  export declare function IconPair(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
273
274
  export declare function IconUnpair(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
275
+ export declare function IconCtrlWorkflow(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
274
276
  export declare function IconBackhandIndexPointingRight(props: Readonly<React.SVGProps<SVGSVGElement>>): import("react/jsx-runtime").JSX.Element;
275
277
  export declare function IconMoveToFolder(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
276
- export { Icon123, IconABC, IconAccessPoint, IconAddressBook, IconSignCert, IconServerService, IconActivity, IconActivityLog, IconAdd, IconAddCircleOutline, IconAll, IconApply, IconApplyAndClose, IconArchive, IconArchiveDoc, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowUp, IconAtSign, IconAttachment, IconAutoConfig, IconBackward, IconBasket, IconBoard, IconBoxArchiveIn, IconBxInfo, IconBxLock, IconCalendar, IconCloseCircle, IconCloseOutline, IconCloud, IconCircleInfo, IconClear, IconColumns, IconCommand, IconCopy, IconCount, IconCrown, IconDashboard, IconDcmtType, IconDcmtTypeOnlyMetadata, IconDcmtTypeSys, IconDelete, IconDetails, IconDown, IconDownload, IconDotsVerticalCircleOutline, IconDuplicate, IconEdit, IconEqual, IconEqualNot, IconEraser, IconExpandRight, IconExport, IconFastBackward, IconFoldeAdd, IconFolderSearch, IconFolderZip, IconFastForward, IconFastSearch, IconFileDots, IconFilter, IconForceStop, IconForward, IconFreeze, IconFreeSearch, IconGreaterThan, IconGreaterThanOrEqual, IconHistory, IconImport, IconTag, IconInfo, IconInsertAbove, IconInsertBelow, IconHeart, IconHide, IconLanguage, IconLeft, IconLessThan, IconLessThanOrEqual, IconLock, IconLockClosed, IconLogin, IconLink, IconLogout, IconMail, IconMapping, IconMic, IconMenuHorizontal, IconMenuKebab, IconMenuVertical, IconMetadata, IconMetadata_Computed, IconMetadata_DataList, IconMetadata_Date, IconMetadata_DynamicDataList, IconMetadata_Numerator, IconMetadata_Numeric, IconMetadata_Special, IconMetadata_Text, IconMetadata_User, IconMonitor, IconOpenInNew, IconNotification, IconPassword, IconPencil, IconPlatform, IconPlay, IconPreview, IconPrinter, IconPrintOutline, IconProcess, IconProgressAbortRequested, IconProgressCompleted, IconProgressNotCompleted, IconProgressReady, IconProgressRunning, IconProgressStarted, IconRefresh, IconReset, IconRecentlyViewed, IconRight, IconSave, IconSearch, IconSelected, IconSettings, IconShow, IconSort, IconStop, IconStopwatch, IconSuccess, IconAlarmPlus, IconHourglass, IconNone, IconNotStarted, IconProgress, IconSuccessCirlce, IconSuitcase, IconSupport, IconUndo, IconUnFreeze, IconUp, IconUpdate, IconUpload, IconUser, IconUserProfile, IconVisible, IconWarning, IconWeb, IconWifi, IconWindowMaximize, IconWindowMinimize, IconWorkflow, IconWorkspace, IconUserGroup, IconUserGroupOutline, IconUserLevelMember, IconUserLevelAdministrator, IconUserLevelSystemAdministrator, IconUserLevelAutonomousAdministrator, IconDraggabledots, IconRelation, IconEasy, IconSum, IconDisk, IconDataList, IconPalette, IconFormatPageSplit, IconPaste, IconFileSearch, IconStar, IconStarRemove, IconSearchCheck, IconLightningFill, IconArrowUnsorted, IconArrowSortedUp, IconArrowSortedDown, IconConvertFilePdf, IconExportTo, IconSharedDcmt, IconShare, IconBatchUpdate, IconCheckFile, IconStatistics, IconSubstFile, IconAdvanced, IconSync, IconSavedQuery, IconSignature, IconSignaturePencil, IconRecursiveOps, IconCheckIn, IconTree, IconGrid, IconList, IconFolder, IconFolderOpen, IconFactory, IconTest, IconCheck, IconUncheck, IconSortAsc, IconSortDesc, IconRoundFileUpload, IconSortAscLetters, IconSortDescLetters, IconRotate, IconSortAscNumbers, IconSortDescNumbers, IconSortAscClock, IconSortDescClock, IconLayerGroup, IconBell, IconBellCheck, IconBellOutline, IconBellCheckOutline, IconEnvelopeOpenText, IconChangeUser, IconUserCheck, IconRelationManyToMany, IconRelationOneToMany, IconUserExpired, IconKey, IconZoomInLinear, IconZoomOutLinear, IconMenuCAWorkingGroups, IconCADossier, IconMenuCACaseflow, IconMenuDashboard, IconMenuCAAreas, IconMenuTask, IconMenuSearch, IconMenuFullTextSearch, IconMenuFavourite, IconSAPLogin, IconSAPLogin2, IconView };
278
+ export { Icon123, IconABC, IconAccessPoint, IconAddressBook, IconSignCert, IconServerService, IconActivity, IconActivityLog, IconAdd, IconAddCircleOutline, IconAll, IconApply, IconApplyAndClose, IconArchive, IconArchiveDoc, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowUp, IconAtSign, IconAttachment, IconAutoConfig, IconBackward, IconBasket, IconBoard, IconBoxArchiveIn, IconBxInfo, IconBxLock, IconCalendar, IconCloseCircle, IconCloseOutline, IconCloud, IconCircleInfo, IconClear, IconColumns, IconCommand, IconCopy, IconCount, IconCrown, IconDashboard, IconDcmtType, IconDcmtTypeOnlyMetadata, IconDcmtTypeSys, IconDelete, IconDetails, IconDown, IconDownload, IconDotsVerticalCircleOutline, IconDuplicate, IconEdit, IconEqual, IconEqualNot, IconEraser, IconExpandRight, IconExport, IconFastBackward, IconFoldeAdd, IconFolderSearch, IconFolderZip, IconFastForward, IconFastSearch, IconFileDots, IconFilter, IconForceStop, IconForward, IconFreeze, IconFreeSearch, IconGreaterThan, IconGreaterThanOrEqual, IconHistory, IconImport, IconTag, IconInfo, IconInsertAbove, IconInsertBelow, IconHeart, IconHide, IconLanguage, IconLeft, IconLessThan, IconLessThanOrEqual, IconLock, IconLockClosed, IconLogin, IconLink, IconLogout, IconMail, IconMapping, IconMic, IconMenuHorizontal, IconMenuKebab, IconMenuVertical, IconMetadata, IconMetadata_Computed, IconMetadata_DataList, IconMetadata_Date, IconMetadata_DynamicDataList, IconMetadata_Numerator, IconMetadata_Numeric, IconMetadata_Special, IconMetadata_Text, IconMetadata_User, IconMonitor, IconOpenInNew, IconNotification, IconPassword, IconPencil, IconPlatform, IconPlay, IconPreview, IconPrinter, IconPrintOutline, IconProcess, IconProgressAbortRequested, IconProgressCompleted, IconProgressNotCompleted, IconProgressReady, IconProgressRunning, IconProgressStarted, IconRefresh, IconReset, IconRecentlyViewed, IconRight, IconSave, IconSearch, IconSelected, IconSettings, IconShow, IconSort, IconStop, IconStopwatch, IconSuccess, IconAlarmPlus, IconHourglass, IconNone, IconNotStarted, IconProgress, IconSuccessCirlce, IconSuitcase, IconSupport, IconUndo, IconUnFreeze, IconUp, IconUpdate, IconUpload, IconUser, IconUserProfile, IconVisible, IconWarning, IconWeb, IconWifi, IconWindowMaximize, IconWindowMinimize, IconWorkflow, IconWorkspace, IconUserGroup, IconUserGroupOutline, IconUserLevelMember, IconUserLevelAdministrator, IconUserLevelSystemAdministrator, IconUserLevelAutonomousAdministrator, IconDraggabledots, IconRelation, IconEasy, IconSum, IconDisk, IconDataList, IconPalette, IconFormatPageSplit, IconPaste, IconFileSearch, IconStar, IconStarRemove, IconSearchCheck, IconLightningFill, IconArrowUnsorted, IconArrowSortedUp, IconArrowSortedDown, IconConvertFilePdf, IconExportTo, IconSharedDcmt, IconShare, IconBatchUpdate, IconCheckFile, IconStatistics, IconSubstFile, IconAdvanced, IconSync, IconSavedQuery, IconSignature, IconSignaturePencil, IconRecursiveOps, IconCheckIn, IconTree, IconGrid, IconList, IconFolder, IconFolderOpen, IconFactory, IconTest, IconCheck, IconUncheck, IconSortAsc, IconSortDesc, IconRoundFileUpload, IconSortAscLetters, IconSortDescLetters, IconRotate, IconSortAscNumbers, IconSortDescNumbers, IconSortAscClock, IconSortDescClock, IconLayerGroup, IconBell, IconBellCheck, IconBellOutline, IconBellCheckOutline, IconEnvelopeOpenText, IconChangeUser, IconUserCheck, IconRelationManyToMany, IconRelationOneToMany, IconUserExpired, IconKey, IconZoomInLinear, IconZoomOutLinear, IconMenuCAWorkingGroups, IconCADossier, IconMenuCACaseflow, IconMenuDashboard, IconMenuCAAreas, IconMenuTask, IconMenuSearch, IconMenuFullTextSearch, IconMenuFavourite, IconSAPLogin, IconSAPLogin2, IconView, IconNewSignature };
@@ -246,6 +246,9 @@ function IconAlarmPlus(props) {
246
246
  function IconHourglass(props) {
247
247
  return (_jsxs("svg", { fill: "#fff", fontSize: props.fontSize ? props.fontSize : FONTSIZE, height: "1em", width: "1em", viewBox: "-3.04 -3.04 22.08 22.08", xmlns: "http://www.w3.org/2000/svg", stroke: "#fff", strokeWidth: "0.00016", children: [" ", _jsxs("g", { id: "SVGRepo_bgCarrier", strokeWidth: "0", children: [" ", _jsx("rect", { x: "-3.04", y: "-3.04", width: "22.08", height: "22.08", rx: "11.04", fill: "currentColor" }), " "] }), " ", _jsx("g", { id: "SVGRepo_tracerCarrier", strokeLinecap: "round", strokeLinejoin: "round" }), " ", _jsxs("g", { id: "SVGRepo_iconCarrier", children: [" ", _jsx("path", { d: "M14 2H13V4.41421L9.41421 8L13 11.5858V14H14V16H2V14H3V11.5858L6.58579 8L3 4.41421V2H2V0H14V2ZM5 2V3.58579L8 6.58579L11 3.58579V2H5ZM8 9.41421L5 12.4142V14H11V12.4142L8 9.41421Z" }), " "] }), " "] }));
248
248
  }
249
+ function IconNewSignature(props) {
250
+ return (_jsxs("svg", { viewBox: "0 -67 512 512", height: "1em", width: "1em", fill: "currentColor", ...props, children: [_jsx("path", { d: "m497 0h-482c-8.285156 0-15 6.714844-15 15v348.355469c0 8.285156 6.714844 15 15 15h482c8.285156 0 15-6.714844 15-15v-348.355469c0-8.285156-6.714844-15-15-15zm-433.054688 314.3125v-250.269531h384.109376v250.269531zm0 0" }), _jsx("path", { d: "m347.65625 149.074219c-16.523438-5.136719-34.363281.878906-44.394531 14.976562l-5.597657 7.863281-16.1875-14.304687c-3.214843-2.84375-7.492187-4.167969-11.753906-3.648437-4.261718.519531-8.09375 2.84375-10.527344 6.378906l-2.125 3.078125-2.480468-18.507813c-.832032-6.199218-5.425782-11.234375-11.527344-12.628906s-12.425781 1.148438-15.867188 6.375l-24.460937 37.144531c-5.597656-6.828125-13.488281-11.414062-22.371094-12.859375-10.910156-1.777344-21.898437 1.414063-30.160156 8.757813l-8.894531 7.90625c-6.191406 5.503906-6.75 14.984375-1.246094 21.175781s14.984375 6.75 21.175781 1.246094l8.894531-7.90625c2.027344-1.800782 4.261719-1.757813 5.414063-1.570313 1.148437.1875 3.277344.855469 4.632813 3.207031 4.546874 7.917969 12.714843 12.8125 21.84375 13.09375 9.113281.25 17.574218-4.113281 22.597656-11.738281l5.570312-8.457031 2.316406 17.269531c.820313 6.144531 5.34375 11.148438 11.371094 12.59375 6.027344 1.441407 12.328125-.972656 15.84375-6.078125l14.570313-21.144531 16 14.136719c3.1875 2.816406 7.421875 4.148437 11.644531 3.664062s8.042969-2.742187 10.507812-6.207031l15.257813-21.441406c2.496094-3.507813 6.9375-5.003907 11.042969-3.726563 4.175781 1.300782 6.980468 5.109375 6.980468 9.480469v3.304687c0 16.445313-8.792968 31.863282-22.949218 40.238282-7.128906 4.21875-9.488282 13.417968-5.269532 20.546875 2.800782 4.734375 7.796876 7.363281 12.925782 7.363281 2.59375 0 5.226562-.675781 7.621094-2.09375 23.238281-13.746094 37.671874-39.058594 37.671874-66.054688v-3.304687c0-17.585937-11.28125-32.90625-28.070312-38.128906zm0 0" }), _jsx("path", { d: "m173.046875 153.902344c8.285156 0 15-6.714844 15-15v-4.199219c0-8.28125-6.714844-15-15-15s-15 6.71875-15 15v4.199219c0 8.285156 6.714844 15 15 15zm0 0" })] }));
251
+ }
249
252
  function IconNone(props) {
250
253
  return (_jsxs("svg", { fill: "currentColor", fontSize: props.fontSize ? props.fontSize : FONTSIZE, height: "1em", width: "1em", viewBox: "0 0 32.00 32.00", version: "1.1", xmlns: "http://www.w3.org/2000/svg", stroke: "#fff", strokeWidth: "0.019200000000000002", children: [" ", _jsxs("g", { id: "SVGRepo_bgCarrier", strokeWidth: "0", children: [" ", _jsx("rect", { x: "0", y: "0", width: "32.00", height: "32.00", rx: "16", fill: "#fff" }), " "] }), " ", _jsx("g", { id: "SVGRepo_tracerCarrier", strokeLinecap: "round", strokeLinejoin: "round" }), " ", _jsxs("g", { id: "SVGRepo_iconCarrier", children: [" ", _jsx("title", { children: "cancel" }), " ", _jsx("path", { d: "M10.771 8.518c-1.144 0.215-2.83 2.171-2.086 2.915l4.573 4.571-4.573 4.571c-0.915 0.915 1.829 3.656 2.744 2.742l4.573-4.571 4.573 4.571c0.915 0.915 3.658-1.829 2.744-2.742l-4.573-4.571 4.573-4.571c0.915-0.915-1.829-3.656-2.744-2.742l-4.573 4.571-4.573-4.571c-0.173-0.171-0.394-0.223-0.657-0.173v0zM16 1c-8.285 0-15 6.716-15 15s6.715 15 15 15 15-6.716 15-15-6.715-15-15-15zM16 4.75c6.213 0 11.25 5.037 11.25 11.25s-5.037 11.25-11.25 11.25-11.25-5.037-11.25-11.25c0.001-6.213 5.037-11.25 11.25-11.25z" }), " "] }), " "] }));
251
254
  }
@@ -673,10 +676,15 @@ export function IconPair(props) {
673
676
  export function IconUnpair(props) {
674
677
  return (_jsxs("svg", { fontSize: props.fontSize ?? FONTSIZE, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "1em", height: "1em", ...props, children: [" ", _jsx("path", { fill: "currentColor", d: "M16.61 13.5c-.8.35-1.5.86-2.07 1.5H9.5a2.5 2.5 0 0 1 0-5H17v1.5H9.5c-.55 0-1 .45-1 1s.45 1 1 1zm-13.11-1c0-2.21 1.79-4 4-4H18a2.495 2.495 0 0 1 1.45 4.53c.6.04 1.18.17 1.72.38c.52-.67.83-1.5.83-2.41c0-2.21-1.79-4-4-4H7.5C4.46 7 2 9.46 2 12.5S4.46 18 7.5 18h5.59c.09-.53.25-1.03.46-1.5H7.5c-2.21 0-4-1.79-4-4M15 18v2h8v-2z" }), " "] }));
675
678
  }
679
+ export function IconCtrlWorkflow(props) {
680
+ return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fontSize: props.fontSize ?? FONTSIZE, viewBox: "0 0 20 20", width: "1em", height: "1em", ...props, children: _jsx("path", { fill: "currentColor",
681
+ // stroke="currentColor" strokeWidth="0.3px"
682
+ d: "M14.085 2H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h3v2H5.5a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1H13v-2h3a2 2 0 0 0 2-2V7h-1v6a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h10v-.5q.001-.264.085-.5M12 17H8v-2h4zm3-14.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5V5h-.78a.5.5 0 0 0-.474.342l-.544 1.632A1.5 1.5 0 0 1 11.78 8H11v1.5a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5V7h.78a.5.5 0 0 0 .474-.342l.544-1.632A1.5 1.5 0 0 1 14.22 4H15zM10 7H8v2h2zm6-2h2V3h-2z" }) }));
683
+ }
676
684
  export function IconBackhandIndexPointingRight(props) {
677
685
  return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 128 128", width: "1em", height: "1em", ...props, children: [_jsx("path", { fill: "#E0BB95", d: "M58.7 41.1c10.8.1 53.3.4 54.9.4c12.8.3 12.7 16.7.7 16.9c-1.5 0-25 1.1-32.2 1.3c5.2 2 7.5 11.9-3.1 14.9c5 2.6 6.4 12.9-4.2 14.7c3.8 2.5 4.3 10.9-6 14.2c-8.4 2.7-28.2 2-40.3-2.3c-9.1-3.3-8.4-5.8-16.7-5.6c-1.4 0-2.1-1.1-2.4-2.4c-1.3-5.9-1.9-26.3-.3-33.8c.4-1.6 1.7-1.8 2.2-1.9c2.1-.4 4.2-2.5 5-4.3c3.2-6.4 12.8-12.8 23.4-18.2c5.5-2.8 9.2-8.8 10.4-18.3c.8-6.3 8.6-7.7 11.8-2.5c2.2 3.6 2.9 7 2.9 10.4c.2 6.2-1.6 10.1-6.1 16.5" }), _jsx("defs", { children: _jsx("path", { id: "notoBackhandIndexPointingRightMediumLightSkinTone0", d: "M58.7 41.1c10.8.1 53.3.4 54.9.4c12.8.3 12.7 16.7.7 16.9c-1.5 0-25 1.1-32.2 1.3c5.2 2 7.5 11.9-3.1 14.9c5 2.6 6.4 12.9-4.2 14.7c3.8 2.5 4.3 10.9-6 14.2c-8.4 2.7-28.2 2-40.3-2.3c-9.1-3.3-8.4-5.8-16.7-5.6c-1.4 0-2.1-1.1-2.4-2.4c-1.3-5.9-1.9-26.3-.3-33.8c.4-1.6 1.7-1.8 2.2-1.9c2.1-.4 4.2-2.5 5-4.3c3.2-6.4 12.8-12.8 23.4-18.2c5.5-2.8 9.2-8.8 10.4-18.3c.8-6.3 8.6-7.7 11.8-2.5c2.2 3.6 2.9 7 2.9 10.4c.2 6.2-1.6 10.1-6.1 16.5" }) }), _jsx("clipPath", { id: "notoBackhandIndexPointingRightMediumLightSkinTone1", children: _jsx("use", { href: "#notoBackhandIndexPointingRightMediumLightSkinTone0" }) }), _jsx("g", { fill: "#D19661", clipPath: "url(#notoBackhandIndexPointingRightMediumLightSkinTone1)", children: _jsx("path", { d: "M73.3 59.5c.1 1.6 2.8 2.9 2.8 6.4c0 3.7-3 4.7-3.1 7.5c-.1 2.7 2 3.8 1.5 7.7c-.6 4.5-4.1 4-4.2 7.1c0 2.7 1.8 3.2 1.8 6.6c0 3.1-3 5.8-5.5 7s-1.2 3.4 0 3.4s11.9-1.3 14.5-8.2c3-8 11-29.6 8.8-36.9c-7.1-1-11.5-1.6-13.7-1.8c-.7-.1-2.9-.6-2.9 1.2M60.1 40.7c0 .9.1 1.5 1 1.5c1 0 43.6 2.1 51.6 2.3c9.2.2 8.7 7.6 5.9 10.1c-1.9 1.7.6 4 2.2 2.6s4.4-3.4 4.3-8.4s-4.4-8.6-8.4-8.9c-3.8-.3-56.6.8-56.6.8m-51.9 21c15.9 0 14.1-11.7 25.2-18.9c15.4-10.1 16.3-11.1 19.7-25.2c1.2-4.9 5.7-4.4 7.7-2.1s4.9-1.3 3.6-2.7s-7.8-7.7-14.8-1.1s-42 46.2-42 46.2z" }) }), _jsx("defs", { children: _jsx("use", { href: "#notoBackhandIndexPointingRightMediumLightSkinTone0", id: "notoBackhandIndexPointingRightMediumLightSkinTone2" }) }), _jsx("clipPath", { id: "notoBackhandIndexPointingRightMediumLightSkinTone3", children: _jsx("use", { href: "#notoBackhandIndexPointingRightMediumLightSkinTone2" }) }), _jsx("g", { fill: "#8D542E", clipPath: "url(#notoBackhandIndexPointingRightMediumLightSkinTone3)", children: _jsx("path", { d: "M58.7 41.1h-1.9c-.4 0-.8-.4-.2-1.3s5.8-8 5.8-15c0-3.2-.5-7.7-3.4-12.4c-.6-.9.2-1.4.9-1c.7.5 6.4 3.2 6.5 13.4s-7.7 16.3-7.7 16.3m65.1 8.8c-.5 0-1.1-.2-1.7 1c-.7 1.5-3.1 4.4-8.4 4.7s-38.1 2.5-38.9 2.5c-1.1 0-1.2 1.9.1 1.8c1.7-.1 7.2-.2 7.2-.2s30.9 1.8 36.9-.6c6.1-2.4 4.8-9.2 4.8-9.2M86.6 68.5c-.3-.1-.7-.1-1 .3c-1.5 2-4.6 3.5-10.6 3.3c-1.4 0-1.6 2.7.1 2.7c.7 0 4-.1 4-.1l6.6-.2zm-3.6 15c-.3-.1-.7-.1-1.1.4c-1.5 2-3.5 2.8-9.7 3c-1.5.1-1.4 2.6.2 2.6c1.1 0 2.4-.1 2.4-.1l7-.6zm-5.4 12.7c-.3-.1-.8-.2-1.2.4c-.8 1.1-2.9 3-7.5 4.4c-3.7 1.1-21.3 1.9-32.5-.7c-2.3-.5-9.9-3-13.6-5.3s-7.3-1.6-8.3-1.4s-6.3.7-6.3.7l2.5 3.7l27 8.6l38.5-.6z" }) })] }));
678
686
  }
679
687
  export function IconMoveToFolder(props) {
680
688
  return (_jsx("svg", { fontSize: props.fontSize ?? FONTSIZE, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 28 28", width: "1em", height: "1em", ...props, children: _jsx("path", { d: "M21.5 15a5.5 5.5 0 1 1 0 11a5.5 5.5 0 0 1 0-11zM10.207 4c.46 0 .908.141 1.284.402l.156.12L14.022 6.5h9.728a2.25 2.25 0 0 1 2.229 1.938l.016.158l.005.154v7.06a6.518 6.518 0 0 0-1.499-1.077L24.5 8.75a.75.75 0 0 0-.648-.743L23.75 8h-9.729l-2.374 1.978a2.25 2.25 0 0 1-1.244.513l-.196.009l-6.707-.001V21.75c0 .38.282.693.648.743l.102.007h11.064a6.47 6.47 0 0 0 .709 1.501L4.25 24a2.25 2.25 0 0 1-2.245-2.096L2 21.75V6.25a2.25 2.25 0 0 1 2.096-2.245L4.25 4h5.957zm11.585 13.545l-.076.044l-.07.057l-.057.07a.5.5 0 0 0 0 .568l.057.07l1.646 1.645l-4.798.001l-.09.008a.5.5 0 0 0-.402.402l-.008.09l.008.09a.5.5 0 0 0 .402.402l.09.008l4.8-.001l-1.648 1.647l-.057.07a.5.5 0 0 0 .695.695l.07-.057l2.535-2.541l.031-.042l.042-.08l.026-.083l.01-.064l-.002-.11l-.008-.042l-.026-.083l-.042-.08l-.037-.05l-2.53-2.533l-.069-.057a.5.5 0 0 0-.492-.044zM10.207 5.5H4.25a.75.75 0 0 0-.743.648L3.5 6.25v2.749L10.207 9a.75.75 0 0 0 .395-.113l.085-.06l1.891-1.578l-1.89-1.575a.75.75 0 0 0-.377-.167l-.104-.007z", fill: "currentColor", fillRule: "nonzero" }) }));
681
689
  }
682
- export { Icon123, IconABC, IconAccessPoint, IconAddressBook, IconSignCert, IconServerService, IconActivity, IconActivityLog, IconAdd, IconAddCircleOutline, IconAll, IconApply, IconApplyAndClose, IconArchive, IconArchiveDoc, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowUp, IconAtSign, IconAttachment, IconAutoConfig, IconBackward, IconBasket, IconBoard, IconBoxArchiveIn, IconBxInfo, IconBxLock, IconCalendar, IconCloseCircle, IconCloseOutline, IconCloud, IconCircleInfo, IconClear, IconColumns, IconCommand, IconCopy, IconCount, IconCrown, IconDashboard, IconDcmtType, IconDcmtTypeOnlyMetadata, IconDcmtTypeSys, IconDelete, IconDetails, IconDown, IconDownload, IconDotsVerticalCircleOutline, IconDuplicate, IconEdit, IconEqual, IconEqualNot, IconEraser, IconExpandRight, IconExport, IconFastBackward, IconFoldeAdd, IconFolderSearch, IconFolderZip, IconFastForward, IconFastSearch, IconFileDots, IconFilter, IconForceStop, IconForward, IconFreeze, IconFreeSearch, IconGreaterThan, IconGreaterThanOrEqual, IconHistory, IconImport, IconTag, IconInfo, IconInsertAbove, IconInsertBelow, IconHeart, IconHide, IconLanguage, IconLeft, IconLessThan, IconLessThanOrEqual, IconLock, IconLockClosed, IconLogin, IconLink, IconLogout, IconMail, IconMapping, IconMic, IconMenuHorizontal, IconMenuKebab, IconMenuVertical, IconMetadata, IconMetadata_Computed, IconMetadata_DataList, IconMetadata_Date, IconMetadata_DynamicDataList, IconMetadata_Numerator, IconMetadata_Numeric, IconMetadata_Special, IconMetadata_Text, IconMetadata_User, IconMonitor, IconOpenInNew, IconNotification, IconPassword, IconPencil, IconPlatform, IconPlay, IconPreview, IconPrinter, IconPrintOutline, IconProcess, IconProgressAbortRequested, IconProgressCompleted, IconProgressNotCompleted, IconProgressReady, IconProgressRunning, IconProgressStarted, IconRefresh, IconReset, IconRecentlyViewed, IconRight, IconSave, IconSearch, IconSelected, IconSettings, IconShow, IconSort, IconStop, IconStopwatch, IconSuccess, IconAlarmPlus, IconHourglass, IconNone, IconNotStarted, IconProgress, IconSuccessCirlce, IconSuitcase, IconSupport, IconUndo, IconUnFreeze, IconUp, IconUpdate, IconUpload, IconUser, IconUserProfile, IconVisible, IconWarning, IconWeb, IconWifi, IconWindowMaximize, IconWindowMinimize, IconWorkflow, IconWorkspace, IconUserGroup, IconUserGroupOutline, IconUserLevelMember, IconUserLevelAdministrator, IconUserLevelSystemAdministrator, IconUserLevelAutonomousAdministrator, IconDraggabledots, IconRelation, IconEasy, IconSum, IconDisk, IconDataList, IconPalette, IconFormatPageSplit, IconPaste, IconFileSearch, IconStar, IconStarRemove, IconSearchCheck, IconLightningFill, IconArrowUnsorted, IconArrowSortedUp, IconArrowSortedDown, IconConvertFilePdf, IconExportTo, IconSharedDcmt, IconShare, IconBatchUpdate, IconCheckFile, IconStatistics, IconSubstFile, IconAdvanced, IconSync, IconSavedQuery, IconSignature, IconSignaturePencil, IconRecursiveOps, IconCheckIn, IconTree, IconGrid, IconList, IconFolder, IconFolderOpen, IconFactory, IconTest, IconCheck, IconUncheck, IconSortAsc, IconSortDesc, IconRoundFileUpload, IconSortAscLetters, IconSortDescLetters, IconRotate, IconSortAscNumbers, IconSortDescNumbers, IconSortAscClock, IconSortDescClock, IconLayerGroup, IconBell, IconBellCheck, IconBellOutline, IconBellCheckOutline, IconEnvelopeOpenText, IconChangeUser, IconUserCheck, IconRelationManyToMany, IconRelationOneToMany, IconUserExpired, IconKey, IconZoomInLinear, IconZoomOutLinear, IconMenuCAWorkingGroups, IconCADossier, IconMenuCACaseflow, IconMenuDashboard, IconMenuCAAreas, IconMenuTask, IconMenuSearch, IconMenuFullTextSearch, IconMenuFavourite, IconSAPLogin, IconSAPLogin2, IconView };
690
+ export { Icon123, IconABC, IconAccessPoint, IconAddressBook, IconSignCert, IconServerService, IconActivity, IconActivityLog, IconAdd, IconAddCircleOutline, IconAll, IconApply, IconApplyAndClose, IconArchive, IconArchiveDoc, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowUp, IconAtSign, IconAttachment, IconAutoConfig, IconBackward, IconBasket, IconBoard, IconBoxArchiveIn, IconBxInfo, IconBxLock, IconCalendar, IconCloseCircle, IconCloseOutline, IconCloud, IconCircleInfo, IconClear, IconColumns, IconCommand, IconCopy, IconCount, IconCrown, IconDashboard, IconDcmtType, IconDcmtTypeOnlyMetadata, IconDcmtTypeSys, IconDelete, IconDetails, IconDown, IconDownload, IconDotsVerticalCircleOutline, IconDuplicate, IconEdit, IconEqual, IconEqualNot, IconEraser, IconExpandRight, IconExport, IconFastBackward, IconFoldeAdd, IconFolderSearch, IconFolderZip, IconFastForward, IconFastSearch, IconFileDots, IconFilter, IconForceStop, IconForward, IconFreeze, IconFreeSearch, IconGreaterThan, IconGreaterThanOrEqual, IconHistory, IconImport, IconTag, IconInfo, IconInsertAbove, IconInsertBelow, IconHeart, IconHide, IconLanguage, IconLeft, IconLessThan, IconLessThanOrEqual, IconLock, IconLockClosed, IconLogin, IconLink, IconLogout, IconMail, IconMapping, IconMic, IconMenuHorizontal, IconMenuKebab, IconMenuVertical, IconMetadata, IconMetadata_Computed, IconMetadata_DataList, IconMetadata_Date, IconMetadata_DynamicDataList, IconMetadata_Numerator, IconMetadata_Numeric, IconMetadata_Special, IconMetadata_Text, IconMetadata_User, IconMonitor, IconOpenInNew, IconNotification, IconPassword, IconPencil, IconPlatform, IconPlay, IconPreview, IconPrinter, IconPrintOutline, IconProcess, IconProgressAbortRequested, IconProgressCompleted, IconProgressNotCompleted, IconProgressReady, IconProgressRunning, IconProgressStarted, IconRefresh, IconReset, IconRecentlyViewed, IconRight, IconSave, IconSearch, IconSelected, IconSettings, IconShow, IconSort, IconStop, IconStopwatch, IconSuccess, IconAlarmPlus, IconHourglass, IconNone, IconNotStarted, IconProgress, IconSuccessCirlce, IconSuitcase, IconSupport, IconUndo, IconUnFreeze, IconUp, IconUpdate, IconUpload, IconUser, IconUserProfile, IconVisible, IconWarning, IconWeb, IconWifi, IconWindowMaximize, IconWindowMinimize, IconWorkflow, IconWorkspace, IconUserGroup, IconUserGroupOutline, IconUserLevelMember, IconUserLevelAdministrator, IconUserLevelSystemAdministrator, IconUserLevelAutonomousAdministrator, IconDraggabledots, IconRelation, IconEasy, IconSum, IconDisk, IconDataList, IconPalette, IconFormatPageSplit, IconPaste, IconFileSearch, IconStar, IconStarRemove, IconSearchCheck, IconLightningFill, IconArrowUnsorted, IconArrowSortedUp, IconArrowSortedDown, IconConvertFilePdf, IconExportTo, IconSharedDcmt, IconShare, IconBatchUpdate, IconCheckFile, IconStatistics, IconSubstFile, IconAdvanced, IconSync, IconSavedQuery, IconSignature, IconSignaturePencil, IconRecursiveOps, IconCheckIn, IconTree, IconGrid, IconList, IconFolder, IconFolderOpen, IconFactory, IconTest, IconCheck, IconUncheck, IconSortAsc, IconSortDesc, IconRoundFileUpload, IconSortAscLetters, IconSortDescLetters, IconRotate, IconSortAscNumbers, IconSortDescNumbers, IconSortAscClock, IconSortDescClock, IconLayerGroup, IconBell, IconBellCheck, IconBellOutline, IconBellCheckOutline, IconEnvelopeOpenText, IconChangeUser, IconUserCheck, IconRelationManyToMany, IconRelationOneToMany, IconUserExpired, IconKey, IconZoomInLinear, IconZoomOutLinear, IconMenuCAWorkingGroups, IconCADossier, IconMenuCACaseflow, IconMenuDashboard, IconMenuCAAreas, IconMenuTask, IconMenuSearch, IconMenuFullTextSearch, IconMenuFavourite, IconSAPLogin, IconSAPLogin2, IconView, IconNewSignature };
@@ -1,5 +1,6 @@
1
1
  import React from 'react';
2
- import { DataColumnDescriptor, PdGs } from '@topconsultnpm/sdk-ts';
2
+ import { FileItem } from '../components';
3
+ import { DataColumnDescriptor, PdGs, SearchResultDescriptor } from '@topconsultnpm/sdk-ts';
3
4
  export declare const getFileIcon: (fileExtension: string | undefined, fileCount: number | undefined, tooltipContent?: JSX.Element | string) => import("react/jsx-runtime").JSX.Element;
4
5
  export declare function formatBytes(bytes: number | undefined, decimalPlaces?: number): string;
5
6
  export interface RowData {
@@ -64,4 +65,5 @@ export declare const parseSignatureConfiguration: (did: number, informationSign:
64
65
  allowCopyright: boolean;
65
66
  copyrightValue: string;
66
67
  };
68
+ export declare const convertSearchResultDescriptorToFileItems: (documents: Array<SearchResultDescriptor>) => Array<FileItem>;
67
69
  export {};