@topconsultnpm/sdkui-react 6.20.0-dev1.12 → 6.20.0-dev1.120
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/assets/Toppy-help-center.png +0 -0
- package/lib/assets/headergradient.svg +87 -0
- package/lib/components/NewComponents/ContextMenu/TMContextMenu.js +322 -30
- package/lib/components/NewComponents/ContextMenu/hooks.d.ts +8 -1
- package/lib/components/NewComponents/ContextMenu/hooks.js +80 -8
- package/lib/components/NewComponents/ContextMenu/index.d.ts +3 -0
- package/lib/components/NewComponents/ContextMenu/index.js +2 -0
- package/lib/components/NewComponents/ContextMenu/styles.d.ts +9 -1
- package/lib/components/NewComponents/ContextMenu/styles.js +159 -37
- package/lib/components/NewComponents/ContextMenu/types.d.ts +22 -3
- package/lib/components/NewComponents/ContextMenu/useLongPress.d.ts +21 -0
- package/lib/components/NewComponents/ContextMenu/useLongPress.js +112 -0
- package/lib/components/NewComponents/FloatingMenuBar/TMFloatingMenuBar.js +803 -109
- package/lib/components/NewComponents/FloatingMenuBar/styles.d.ts +25 -5
- package/lib/components/NewComponents/FloatingMenuBar/styles.js +215 -59
- package/lib/components/NewComponents/FloatingMenuBar/types.d.ts +12 -2
- package/lib/components/base/TMAccordionNew.js +35 -14
- package/lib/components/base/TMButton.js +6 -0
- package/lib/components/base/TMClosableList.js +4 -0
- package/lib/components/base/TMCustomButton.js +61 -17
- package/lib/components/base/TMDataGrid.d.ts +7 -4
- package/lib/components/base/TMDataGrid.js +153 -11
- package/lib/components/base/TMDropDownMenu.js +21 -18
- package/lib/components/base/TMFileManager.d.ts +4 -3
- package/lib/components/base/TMFileManager.js +32 -24
- package/lib/components/base/TMFileManagerDataGridView.d.ts +3 -2
- package/lib/components/base/TMFileManagerDataGridView.js +1 -11
- package/lib/components/base/TMFileManagerThumbnailItems.d.ts +7 -1
- package/lib/components/base/TMFileManagerThumbnailItems.js +5 -2
- package/lib/components/base/TMFileManagerThumbnailsView.d.ts +17 -4
- package/lib/components/base/TMFileManagerThumbnailsView.js +18 -6
- package/lib/components/base/TMFileManagerUtils.d.ts +0 -12
- package/lib/components/base/TMListView.js +33 -15
- package/lib/components/base/TMPanel.d.ts +1 -1
- package/lib/components/base/TMPanel.js +3 -1
- package/lib/components/base/TMPopUp.js +6 -0
- package/lib/components/base/TMToolbarCard.js +2 -0
- package/lib/components/base/TMTreeView.d.ts +2 -1
- package/lib/components/base/TMTreeView.js +33 -26
- package/lib/components/choosers/TMDataListItemChooser.d.ts +2 -0
- package/lib/components/choosers/TMDataListItemChooser.js +8 -2
- package/lib/components/choosers/TMDcmtTypeChooser.d.ts +1 -0
- package/lib/components/choosers/TMDcmtTypeChooser.js +11 -3
- package/lib/components/choosers/TMDistinctValues.js +2 -2
- package/lib/components/choosers/TMDynDataListItemChooser.d.ts +2 -0
- package/lib/components/choosers/TMDynDataListItemChooser.js +8 -2
- package/lib/components/choosers/TMInvoiceRetrieveFormats.js +1 -1
- package/lib/components/choosers/TMMetadataChooser.d.ts +2 -0
- package/lib/components/choosers/TMMetadataChooser.js +19 -4
- package/lib/components/choosers/TMOrderRetrieveFormats.js +1 -1
- package/lib/components/choosers/TMUserChooser.d.ts +2 -5
- package/lib/components/choosers/TMUserChooser.js +33 -47
- package/lib/components/editors/TMCheckBox.js +2 -0
- package/lib/components/editors/TMDateBox.js +18 -9
- package/lib/components/editors/TMEditorStyled.js +7 -0
- package/lib/components/editors/TMLocalizedTextBox.d.ts +3 -1
- package/lib/components/editors/TMLocalizedTextBox.js +16 -14
- package/lib/components/editors/TMMetadataEditor.d.ts +1 -0
- package/lib/components/editors/TMMetadataEditor.js +4 -4
- package/lib/components/editors/TMMetadataTextBox.d.ts +9 -0
- package/lib/components/editors/TMMetadataTextBox.js +92 -0
- package/lib/components/editors/TMMetadataValues.d.ts +1 -0
- package/lib/components/editors/TMMetadataValues.js +25 -7
- package/lib/components/editors/TMRadioButton.js +2 -0
- package/lib/components/editors/TMTextArea.js +18 -30
- package/lib/components/editors/TMTextBox.d.ts +1 -1
- package/lib/components/editors/TMTextBox.js +29 -4
- package/lib/components/editors/TMTextExpression.js +6 -91
- package/lib/components/features/archive/TMArchive.js +2 -2
- package/lib/components/features/assistant/TMToppyDraggableHelpCenter.d.ts +15 -0
- package/lib/components/features/assistant/TMToppyDraggableHelpCenter.js +462 -0
- package/lib/components/features/assistant/TMToppySpeechBubble.d.ts +11 -0
- package/lib/components/features/assistant/TMToppySpeechBubble.js +126 -0
- package/lib/components/features/documents/TMDcmtBlog.js +1 -1
- package/lib/components/features/documents/TMDcmtForm.d.ts +14 -2
- package/lib/components/features/documents/TMDcmtForm.js +459 -208
- package/lib/components/features/documents/TMDcmtPreview.js +42 -155
- package/lib/components/features/documents/TMDcmtTasks.js +9 -9
- package/lib/components/features/documents/TMMasterDetailDcmts.js +38 -53
- package/lib/components/features/documents/TMRelationViewer.d.ts +1 -1
- package/lib/components/features/documents/TMRelationViewer.js +2 -2
- package/lib/components/features/search/TMDcmtCheckoutInfoForm.d.ts +8 -0
- package/lib/components/features/search/{TMSearchResultCheckoutInfoForm.js → TMDcmtCheckoutInfoForm.js} +2 -2
- package/lib/components/features/search/TMSavedQuerySelector.js +72 -67
- package/lib/components/features/search/TMSearch.d.ts +3 -0
- package/lib/components/features/search/TMSearch.js +50 -11
- package/lib/components/features/search/TMSearchQueryEditor.d.ts +1 -0
- package/lib/components/features/search/TMSearchQueryEditor.js +10 -10
- package/lib/components/features/search/TMSearchQueryPanel.d.ts +1 -0
- package/lib/components/features/search/TMSearchQueryPanel.js +40 -25
- package/lib/components/features/search/TMSearchResult.d.ts +3 -0
- package/lib/components/features/search/TMSearchResult.js +210 -250
- package/lib/components/features/search/TMSearchResultsMenuItems.d.ts +3 -3
- package/lib/components/features/search/TMSearchResultsMenuItems.js +227 -171
- package/lib/components/features/search/TMSignSettingsForm.js +1 -1
- package/lib/components/features/search/TMSignatureInfoContent.d.ts +6 -0
- package/lib/components/features/search/TMSignatureInfoContent.js +140 -0
- package/lib/components/features/search/TMViewHistoryDcmt.js +2 -2
- package/lib/components/features/tasks/TMTaskForm.js +75 -25
- package/lib/components/features/tasks/TMTasksAgenda.d.ts +3 -1
- package/lib/components/features/tasks/TMTasksAgenda.js +48 -9
- package/lib/components/features/tasks/TMTasksCalendar.d.ts +2 -0
- package/lib/components/features/tasks/TMTasksCalendar.js +19 -7
- package/lib/components/features/tasks/TMTasksUtils.d.ts +2 -2
- package/lib/components/features/tasks/TMTasksUtils.js +57 -37
- package/lib/components/features/tasks/TMTasksView.js +28 -19
- package/lib/components/features/workflow/TMWorkflowPopup.d.ts +33 -2
- package/lib/components/features/workflow/TMWorkflowPopup.js +139 -34
- package/lib/components/features/workflow/diagram/DiagramItemComponent.d.ts +2 -0
- package/lib/components/features/workflow/diagram/DiagramItemComponent.js +14 -7
- package/lib/components/features/workflow/diagram/DiagramItemForm.js +1 -1
- package/lib/components/features/workflow/diagram/RecipientList.js +3 -2
- package/lib/components/features/workflow/diagram/WFDiagram.d.ts +4 -0
- package/lib/components/features/workflow/diagram/WFDiagram.js +164 -13
- package/lib/components/forms/Login/LoginValidatorService.d.ts +2 -0
- package/lib/components/forms/Login/LoginValidatorService.js +7 -2
- package/lib/components/forms/Login/TMLoginForm.js +35 -7
- package/lib/components/forms/TMChooserForm.js +1 -1
- package/lib/components/grids/TMBlogsPost.js +56 -31
- package/lib/components/grids/TMRecentsManager.js +20 -10
- package/lib/components/grids/TMValidationItemsList.js +6 -0
- package/lib/components/index.d.ts +6 -3
- package/lib/components/index.js +6 -3
- package/lib/components/layout/panelManager/TMPanelManagerContext.js +13 -5
- package/lib/components/query/TMQueryEditor.d.ts +3 -1
- package/lib/components/query/TMQueryEditor.js +102 -100
- package/lib/components/settings/SettingsAppearance.d.ts +2 -1
- package/lib/components/settings/SettingsAppearance.js +99 -30
- package/lib/components/sidebar/TMHeader.js +11 -7
- package/lib/components/sidebar/TMSidebar.d.ts +0 -1
- package/lib/components/sidebar/TMSidebar.js +16 -44
- package/lib/components/sidebar/TMSidebarItem.js +36 -17
- package/lib/components/viewers/TMDataListItemViewer.d.ts +2 -1
- package/lib/components/viewers/TMDataListItemViewer.js +35 -71
- package/lib/components/viewers/TMDataUserIdItemViewer.d.ts +8 -0
- package/lib/components/viewers/TMDataUserIdItemViewer.js +39 -0
- package/lib/css/tm-sdkui.css +1 -1
- package/lib/helper/SDKUI_Globals.d.ts +22 -0
- package/lib/helper/SDKUI_Globals.js +10 -1
- package/lib/helper/SDKUI_Localizator.d.ts +20 -1
- package/lib/helper/SDKUI_Localizator.js +197 -1
- package/lib/helper/TMCommandsContextMenu.d.ts +4 -2
- package/lib/helper/TMCommandsContextMenu.js +15 -4
- package/lib/helper/TMIcons.d.ts +4 -0
- package/lib/helper/TMIcons.js +13 -3
- package/lib/helper/TMPdfViewer.d.ts +8 -0
- package/lib/helper/TMPdfViewer.js +373 -0
- package/lib/helper/TMToppyMessage.js +4 -0
- package/lib/helper/checkinCheckoutManager.d.ts +31 -1
- package/lib/helper/checkinCheckoutManager.js +112 -30
- package/lib/helper/devextremeCustomMessages.d.ts +30 -0
- package/lib/helper/devextremeCustomMessages.js +30 -0
- package/lib/helper/helpers.d.ts +30 -2
- package/lib/helper/helpers.js +131 -3
- package/lib/helper/index.d.ts +2 -0
- package/lib/helper/index.js +2 -0
- package/lib/helper/queryHelper.d.ts +1 -1
- package/lib/helper/queryHelper.js +33 -3
- package/lib/helper/workItemsHelper.d.ts +6 -0
- package/lib/helper/workItemsHelper.js +230 -0
- package/lib/hooks/useCheckInOutOperations.d.ts +28 -0
- package/lib/hooks/useCheckInOutOperations.js +223 -0
- package/lib/hooks/useDataListItem.d.ts +12 -0
- package/lib/hooks/useDataListItem.js +132 -0
- package/lib/hooks/useDataUserIdItem.d.ts +10 -0
- package/lib/hooks/useDataUserIdItem.js +96 -0
- package/lib/hooks/useFloatingBarPinnedItems.d.ts +11 -0
- package/lib/hooks/useFloatingBarPinnedItems.js +54 -0
- package/lib/hooks/useMetadataExpression.d.ts +19 -0
- package/lib/hooks/useMetadataExpression.js +99 -0
- package/lib/hooks/useSettingsFeedback.d.ts +11 -0
- package/lib/hooks/useSettingsFeedback.js +38 -0
- package/lib/hooks/useWorkflowApprove.d.ts +4 -0
- package/lib/hooks/useWorkflowApprove.js +14 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +3 -2
- package/lib/services/platform_services.d.ts +3 -3
- package/lib/ts/types.d.ts +61 -1
- package/lib/utils/theme.d.ts +1 -1
- package/lib/utils/theme.js +1 -1
- package/package.json +7 -4
- package/lib/components/NewComponents/Notification/Notification.d.ts +0 -4
- package/lib/components/NewComponents/Notification/Notification.js +0 -60
- package/lib/components/NewComponents/Notification/NotificationContainer.d.ts +0 -8
- package/lib/components/NewComponents/Notification/NotificationContainer.js +0 -33
- package/lib/components/NewComponents/Notification/index.d.ts +0 -2
- package/lib/components/NewComponents/Notification/index.js +0 -2
- package/lib/components/NewComponents/Notification/styles.d.ts +0 -21
- package/lib/components/NewComponents/Notification/styles.js +0 -180
- package/lib/components/NewComponents/Notification/types.d.ts +0 -18
- package/lib/components/NewComponents/Notification/types.js +0 -1
- package/lib/components/base/TMContextMenu.d.ts +0 -25
- package/lib/components/base/TMContextMenu.js +0 -109
- package/lib/components/base/TMContextMenuOLD.d.ts +0 -26
- package/lib/components/base/TMContextMenuOLD.js +0 -56
- package/lib/components/base/TMFloatingToolbar.d.ts +0 -9
- package/lib/components/base/TMFloatingToolbar.js +0 -101
- package/lib/components/features/assistant/ToppyDraggableHelpCenter.d.ts +0 -30
- package/lib/components/features/assistant/ToppyDraggableHelpCenter.js +0 -482
- package/lib/components/features/assistant/ToppySpeechBubble.d.ts +0 -9
- package/lib/components/features/assistant/ToppySpeechBubble.js +0 -117
- package/lib/components/features/search/TMSearchResultCheckoutInfoForm.d.ts +0 -8
|
@@ -24,6 +24,7 @@ export declare class SDKUI_Localizator {
|
|
|
24
24
|
static get AddTo(): string;
|
|
25
25
|
static get AddToHomePage(): "Zur Startseite hinzufügen" | "Add to Home Page" | "Añadir a la página inicial" | "Ajoute à Home Page" | "Adicionar a Home Page" | "Aggiungi alla Home Page";
|
|
26
26
|
static get Advanced(): "Erweitert" | "Advanced" | "Avanzado" | "Avancé" | "Avançado" | "Avanzate";
|
|
27
|
+
static get AggregateSearch(): "Aggregierte Suche" | "Aggregate search" | "Búsqueda agregada" | "Recherche agrégée" | "Pesquisa agregada" | "Ricerca aggregata";
|
|
27
28
|
static get All(): "Alle" | "All" | "Todos" | "Tous" | "Tutti";
|
|
28
29
|
static get AllFemale(): "Alle" | "All" | "Todas" | "Toutes" | "Tutte";
|
|
29
30
|
static get AllDcmts(): "Alle Dokumente" | "All documents" | "Todos los documentos" | "Tous les documents" | "Todos os documentos" | "Tutti i documenti";
|
|
@@ -83,6 +84,7 @@ export declare class SDKUI_Localizator {
|
|
|
83
84
|
static get CancelCheckOut(): string;
|
|
84
85
|
static get CassettoDoganaleExportMRN(): "MRN-Erholung für den Export" | "MRN recovery for export" | "Recuperación MRN para exportación" | "Récupération MRN pour l'export" | "Recuperação MRN para exportação" | "Recupero MRN per Export";
|
|
85
86
|
static get CassettoDoganaleExportVU(): "Wiederherstellung des Ausreisevisums" | "Exit Visa Recovery" | "Recuperación de Visa de Salida" | "Sortie Récupération Visa" | "Recuperação de Visto de Saída" | "Recupero Visto Uscire per Export";
|
|
87
|
+
static get CassettoDoganaleExportEUR1(): "EUR1-Erholung für den Export" | "EUR1 recovery for export" | "Recuperación EUR1 para exportación" | "Récupération EUR1 pour l'export" | "Recuperação EUR1 para exportação" | "Recupero EUR1 per Export";
|
|
86
88
|
static get CassettoDoganaleImportMRN(): "MRN-Erholung für den Import" | "MRN recovery for import" | "Recuperación MRN para importación" | "Récupération MRN à l'import" | "Recuperação MRN para importação" | "Recupero MRN per Import";
|
|
87
89
|
static get CassettoDoganalePlus_UserName(): "STD-Benutzer des ADM-Portals" | "STD User of the ADM Portal" | "Usuario STD del Portal ADM" | "Utilisateur STD du portail ADM" | "Utilizador DST do Portal ADM" | "Utente STD del Portale ADM";
|
|
88
90
|
static get Cancel(): "Abbrechen" | "Cancel" | "Anular" | "Annuler" | "Cancelar" | "Annulla";
|
|
@@ -116,6 +118,7 @@ export declare class SDKUI_Localizator {
|
|
|
116
118
|
static get ConfirmDownload(): string;
|
|
117
119
|
static get ConfirmPassword(): "Bestätige das Passwort" | "Confirm password" | "Confirmar Contraseña" | "Confirmez le mot de passe" | "Confirme sua senha" | "Conferma password";
|
|
118
120
|
static get ConfirmOnCancel(): "Wenn wir fortfahren, gehen die vorgenommenen Änderungen verloren. Fortfahren?" | "All modifications will be lost. Continue?" | "Si sigue adelante, se perderán las modificaciones aportadas. ¿Seguir?" | "Continuant, les changements seront perdus. Continuer?" | "Continuando as alterações feitas serão perdidas. Continuar?" | "Proseguendo le modifiche apportate andranno perse. Proseguire?";
|
|
121
|
+
static get ConfirmRestoreDefaultSettings(): "Bestätigen Sie das Zurücksetzen der Standardeinstellungen?" | "Do you confirm you want to restore default settings?" | "¿Confirmas que quieres restaurar la configuración predeterminada?" | "Confirmez-vous vouloir restaurer les paramètres par défaut ?" | "Confirma que deseja restaurar as configurações padrão?" | "Confermi di voler ripristinare le impostazioni predefinite?";
|
|
119
122
|
static get ConfirmSelectedDocumentsMessage(): string;
|
|
120
123
|
static get ContextualTask(): "Kontextbezogene Aufgabe" | "Contextual Task" | "Tarea contextual" | "Tâche contextuelle" | "Tarefa contextual" | "Attività contestuale";
|
|
121
124
|
static get Continue(): string;
|
|
@@ -204,7 +207,7 @@ export declare class SDKUI_Localizator {
|
|
|
204
207
|
static get DownloadXMLAttachments(): string;
|
|
205
208
|
static get Draft(): string;
|
|
206
209
|
static get Drafts(): string;
|
|
207
|
-
static get DropFileHere(): "Ziehen Sie Ihre Datei hierher" | "Drop your file here" | "Suelta tu archivo aquí" | "Déposez votre fichier ici" | "Solte seu arquivo aqui";
|
|
210
|
+
static get DropFileHere(): "Ziehen Sie Ihre Datei hierher" | "Drop your file here" | "Suelta tu archivo aquí" | "Déposez votre fichier ici" | "Solte seu arquivo aqui" | "Trascina qui il tuo file";
|
|
208
211
|
static get DropFileToShare(): string;
|
|
209
212
|
static get Duplicate(): "Duplikat" | "Duplicate" | "Duplicar" | "Dupliquer" | "Duplicado" | "Duplica";
|
|
210
213
|
static get Duplicate_ConfirmFor1(): "Möchten Sie '{{0}}' duplizieren?" | "Are you sure you want to duplicate '{{0}}'?" | "¿Estás seguro de que deseas duplicar '{{0}}'?" | "Êtes-vous sûr de vouloir dupliquer '{{0}}'?" | "Você tem certeza que deseja duplicar '{{0}}'?" | "Sei sicuro di voler duplicare '{{0}}'?";
|
|
@@ -245,6 +248,8 @@ export declare class SDKUI_Localizator {
|
|
|
245
248
|
static get ExpertMode(): "Expertenmodus" | "Expert mode" | "Modo experto" | "Mode expert" | "Modo especialista" | "Modalità esperto";
|
|
246
249
|
static get Expiring(): "Ablaufend" | "Expiring" | "Por vencer" | "Expirant" | "Vencendo" | "In scadenza";
|
|
247
250
|
static get Export(): "Exportieren" | "Export" | "Exportar" | "Exporter" | "Esporta";
|
|
251
|
+
static get ExportEUR1(): "Exportieren EUR1" | "Export EUR1" | "Exportar EUR1" | "Exporter EUR1" | "Export - EUR1";
|
|
252
|
+
static get ExportEUR1OutputFile(): "Dateipfad für den Export (EUR1)" | "File Path for Export (EUR1)" | "Ruta de archivo para exportación (EUR1)" | "Chemin du fichier à exporter (EUR1)" | "Caminho do arquivo para exportação (EUR1)" | "Percorso del File per Export (EUR1)";
|
|
248
253
|
static get ExportTo(): string;
|
|
249
254
|
static get ExportMRN(): "Exportieren MRN" | "Export MRN" | "Exportar MRN" | "Exporter MRN";
|
|
250
255
|
static get ExportMRNDayBack(): "Anzahl der Tage für die Exportdatenwiederherstellung (MRN)" | "Number of days for export data recovery (MRN)" | "Número de días para la recuperación de datos de exportación (MRN)" | "Nombre de jours pour la récupération des données d'exportation (MRN)" | "Número de dias para recuperação de dados de exportação (MRN)" | "Numero di giorni per il recupero dei dati di Export (MRN)";
|
|
@@ -297,7 +302,10 @@ export declare class SDKUI_Localizator {
|
|
|
297
302
|
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";
|
|
298
303
|
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";
|
|
299
304
|
static get GoTo(): "Gehe zu" | "Go to" | "Ir a" | "Aller à" | "Vai a";
|
|
305
|
+
static get GoToDocument(): "Gehe zum Dokument" | "Go to document" | "Ir al documento" | "Aller au document" | "Ir ao documento" | "Vai al documento";
|
|
306
|
+
static get GoToDossier(): "Gehe zur Praxis" | "Go to practice" | "Ir a la práctica" | "Aller à la pratique" | "Ir à prática" | "Vai alla pratica";
|
|
300
307
|
static get GoToToday(): "Gehe zu heute" | "Go to today" | "Ir a hoy" | "Aller à aujourd'hui" | "Ir para hoje" | "Vai a oggi";
|
|
308
|
+
static get GoToWorkgroup(): "Gehe zur Arbeitsgruppe" | "Go to workgroup" | "Ir al grupo de trabajo" | "Aller au groupe de travail" | "Ir para grupo de trabalho" | "Vai al gruppo di lavoro";
|
|
301
309
|
static get Grids(): string;
|
|
302
310
|
static get Hide_CompleteName(): "Vollständigen Namen ausblenden" | "Hide full name" | "Ocultar nombre completo" | "Masquer le nom complet" | "Ocultar nome completo" | "Nascondi nome completo";
|
|
303
311
|
static get HideAll(): "Alle ausblenden" | "Hide all" | "Ocultar todo" | "Masquer tout" | "Ocultar tudo" | "Nascondi tutti";
|
|
@@ -347,8 +355,10 @@ export declare class SDKUI_Localizator {
|
|
|
347
355
|
static get Login(): string;
|
|
348
356
|
static get LogDelete(): "Löschen der Logik" | "Logical delete" | "Cancelación lógica" | "Suppression logique" | "Lógica de cancelamento" | "Cancellazione logica";
|
|
349
357
|
static get Logout(): "Abmelden" | "Logout" | "Cerrar sesión" | "Déconnexion" | "Sair" | "Esci";
|
|
358
|
+
static get LogScreenFolder(): "Ordner für Screenshot-Protokolle" | "Log screenshot folder" | "Carpeta de registro de capturas de pantalla" | "Dossier de journal des captures d'écran" | "Pasta de log de capturas de tela" | "Cartella di log screenshot";
|
|
350
359
|
static get Low(): "Niedrig" | "Low" | "Baja" | "Faible" | "Baixa" | "Bassa";
|
|
351
360
|
static get MakeEditable(): "Bearbeitbar machen" | "Make editable" | "Hacer editable" | "Rendre modifiable" | "Faça editável" | "Rendi editabile";
|
|
361
|
+
static get ManageFromTaskPanel(): string;
|
|
352
362
|
static get Mark(): "Markierung" | "Mark" | "Marca" | "Marque" | "Segno";
|
|
353
363
|
static get MarkAs(): "Als markieren" | "Mark as" | "Marcar como" | "Marquer comme" | "Segna come";
|
|
354
364
|
static get Match(): "Übereinstimmen" | "Match" | "Emparejar" | "Associer" | "Corresponder" | "Abbina";
|
|
@@ -430,6 +440,7 @@ export declare class SDKUI_Localizator {
|
|
|
430
440
|
static get NoSource(): "Keine Quelle" | "No Source" | "Ninguna fuente" | "Aucune source" | "Nenhuma fonte" | "Nessun Origine";
|
|
431
441
|
static get NoneSelection(): "Keine Auswahl" | "No selection" | "Ninguna selección" | "Pas de sélections" | "Nenhuma seleção" | "Nessuna selezione";
|
|
432
442
|
static get NotAvailable(): string;
|
|
443
|
+
static get MaximumNumberOfResults(): string;
|
|
433
444
|
static get OfSystem(): "Des Systems" | "Of system" | "Del sistema" | "Du système" | "Do sistema" | "Di sistema";
|
|
434
445
|
static get OldPassword(): "Altes Kennwort" | "Old password" | "Contraseña anterior" | "Ancien mot de passe" | "Senha Antiga" | "Password vecchia";
|
|
435
446
|
static get OpenedDocument(): "Dokument geöffnet" | "Document opened" | "Documento abierto" | "Document ouvert" | "Documento aberto" | "Documento aperto";
|
|
@@ -491,6 +502,8 @@ export declare class SDKUI_Localizator {
|
|
|
491
502
|
static get PhysDelete(): "Physische Stornierung" | "Physical delete" | "Cancelación física" | "Supression" | "Cancelamento física" | "Cancellazione fisica";
|
|
492
503
|
static get PhysicalHistoryDeletion(): string;
|
|
493
504
|
static get Postponed(): "Verschoben" | "Postponed" | "Aplazada" | "Reportée" | "Adiadas" | "Rinviata";
|
|
505
|
+
static get PotentiallyUnsafeContent(): "Potenziell unsichere Inhalte" | "Potentially Unsafe Content" | "Contenido potencialmente no seguro" | "Contenu potentiellement non sécurisé" | "Conteúdo potencialmente não seguro" | "Contenuti potenzialmente non sicuri";
|
|
506
|
+
static get PotentiallyUnsafeCodePatternsDetected(): "{{0}} potenziell unsicheres Code-Muster in diesem Dokument erkannt." | "{{0}} potentially unsafe code pattern detected in this document." | "Se han detectado {{0}} patrones de código potencialmente no seguro en este documento." | "{{0}} motifs de code potentiellement non sécurisé détectés dans ce document." | "{{0}} padrões de código potencialmente não seguro detectados neste documento." | "Sono stati rilevati {{0}} pattern di codice potenzialmente non sicuro in questo documento.";
|
|
494
507
|
static get PreparingFileForArchive(): "Datei für Archivierung vorbereiten..." | "Preparing file for archive..." | "Preparando archivo para archivar..." | "Préparation du fichier pour l'archive..." | "Preparando arquivo para arquivar..." | "Preparazione del file per l'archivio...";
|
|
495
508
|
static get Preview(): "Vorschau" | "Preview" | "Vista previa" | "Aperçu" | "Pré-visualização" | "Anteprima";
|
|
496
509
|
static get PreviewDocument(): "Vorschau-Dokument" | "Preview document" | "Documento de vista previa" | "Document d'aperçu" | "Documento de pré-visualização" | "Anteprima documento";
|
|
@@ -530,6 +543,7 @@ export declare class SDKUI_Localizator {
|
|
|
530
543
|
static get ReplaceDocument(): "Dokument ersetzen" | "Replace Document" | "Reemplazar Documento" | "Remplacer le Document" | "Substituir Documento" | "Sostituisci Documento";
|
|
531
544
|
static get Request(): string;
|
|
532
545
|
static get RequestTo(): string;
|
|
546
|
+
static get SearchType(): "Suchtyp" | "Search type" | "Tipo de búsqueda" | "Type de recherche" | "Tipo de pesquisa" | "Tipo di ricerca";
|
|
533
547
|
static get Required(): "Obligatorisch" | "Required" | "Obligatorio" | "Obbligatoire" | "Obrigatório" | "Obbligatorio";
|
|
534
548
|
static get RequiredField(): "Erforderliches Feld" | "Required field" | "Campo obligatorio" | "Champ obligatoire" | "Campo obrigatório" | "Campo Obbligatorio";
|
|
535
549
|
static get RequiredNOT(): "Nicht obligatorisch" | "Not mandatory" | "No obligatorio" | "Pas obligatoire" | "Não é obrigatório" | "Non obbligatorio";
|
|
@@ -546,6 +560,7 @@ export declare class SDKUI_Localizator {
|
|
|
546
560
|
static get Restore(): "Wiederherstellen" | "Restore" | "Restablecer" | "Restaure" | "Restauração" | "Ripristina";
|
|
547
561
|
static get RestoreComment(): "Kommentar wiederherstellen?" | "Restore the comment?" | "¿Restaurar el comentario?" | "Restaurer le commentaire ?" | "Restaurar o comentário?" | "Ripristinare il commento?";
|
|
548
562
|
static get ResultDetails(): string;
|
|
563
|
+
static get ResultsPerPage(): string;
|
|
549
564
|
static get RetrieveFile(): "Dateiwiederherstellung" | "Retrieve file" | "Recuperación archivos" | "Récupération fichier" | "Arquivos de recuperação" | "Recupero file";
|
|
550
565
|
static get Rows(): "Linien" | "rows" | "líneas" | "lignes" | "linhas" | "righe";
|
|
551
566
|
static get Save(): "Speichern" | "Save" | "Guardar" | "Enregistre" | "Salvar" | "Salva";
|
|
@@ -582,6 +597,7 @@ export declare class SDKUI_Localizator {
|
|
|
582
597
|
static get SetAsFavorite(): "Als Favorit festlegen" | "Set as favorite" | "Establecer como favorito" | "Définir comme favori" | "Definir como favorito" | "Imposta come preferito";
|
|
583
598
|
static get SetNamedCredentialsAsPreferred(): "Möchten Sie die Anmeldedaten '{{0}}' als bevorzugt festlegen?" | "Do you want to set the '{{0}}' credentials as preferred?" | "¿Quieres configurar las credenciales '{{0}}' como preferidas?" | "Voulez-vous définir les identifiants '{{0}}' comme préférés ?" | "Deseja definir as credenciais '{{0}}' como preferidas?" | "Vuoi impostare le credenziali '{{0}}' come preferite?";
|
|
584
599
|
static get Settings(): "Einstellungen" | "Settings" | "Ajustes" | "Réglages" | "Definições" | "Impostazioni";
|
|
600
|
+
static get SettingSavedSuccessfully(): string;
|
|
585
601
|
static get Severity(): "Schweregrad" | "Severity" | "Gravedad" | "Gravité" | "Gravidade" | "Gravità";
|
|
586
602
|
static get Share(): string;
|
|
587
603
|
static get ShareNew(): string;
|
|
@@ -592,6 +608,7 @@ export declare class SDKUI_Localizator {
|
|
|
592
608
|
static get SharedDocuments(): "Gemeinsame Dokumente" | "Shared documents" | "Documentos compartidos" | "Documents partagés" | "Documentos compartilhados" | "Documenti condivisi";
|
|
593
609
|
static get Shortcuts(): "Tastenkombinationen" | "Shortcuts" | "Atajos" | "Raccourcis" | "Atalhos" | "Scorciatoie";
|
|
594
610
|
static get ShowAll(): "Alle anzeigen" | "Show all" | "Mostrar todo" | "Tout afficher" | "Mostrar tudo" | "Mostra tutti";
|
|
611
|
+
static get ShowColumnSelection(): string;
|
|
595
612
|
static get ShowFloatingBar(): string;
|
|
596
613
|
static get ShowLess(): "Weniger anzeigen" | "Show less" | "Mostrar menos" | "Afficher moins" | "Mostra meno";
|
|
597
614
|
static get Show_CompleteName(): "Vollständigen Namen anzeigen" | "View full name" | "Mostrar nombre completo" | "Afficher le nom complet" | "Mostrar nome completo" | "Visualizza nome completo";
|
|
@@ -625,8 +642,10 @@ export declare class SDKUI_Localizator {
|
|
|
625
642
|
static get Statistics(): "Statistiken" | "Statistics" | "Estadística" | "Statistiques" | "Estatísticas" | "Statistiche";
|
|
626
643
|
static get Status(): "Status" | "Estado" | "Statut" | "Stato";
|
|
627
644
|
static get Subject(): "Betreff" | "Subject" | "Asunto" | "Objet" | "Assunto" | "Oggetto";
|
|
645
|
+
static get SubjectType(): "Betreff-Typ" | "Subject type" | "Tipo de asunto" | "Type de sujet" | "Tipo de assunto" | "Tipo soggetto";
|
|
628
646
|
static get Summary(): "Zusammenfassung" | "Summary" | "Resumen" | "Résumé" | "Resumo" | "Riepilogo";
|
|
629
647
|
static get SwitchUser(): "Benutzer wechseln" | "Switch user" | "Cambiar usuario" | "Changer d'utilisateur" | "Mudar de usuário" | "Cambia utente";
|
|
648
|
+
static get TargetedSearch(): "Gezielte Suche" | "Targeted search" | "Búsqueda dirigida" | "Recherche ciblée" | "Pesquisa direcionada" | "Ricerca puntuale";
|
|
630
649
|
static get TaskAssignedMessage(): "Die Aufgabe wurde von Benutzer '{{0}}' zugewiesen. Nur die Felder 'Status' und 'Erinnerung' können bearbeitet werden, da sie für die Person, die mit der Arbeit fortfährt, relevant sind" | "The task was assigned by user '{{0}}'. Only the 'Status' and 'Reminder' fields can be edited, as they are relevant for the person who will continue with the work" | "La tarea fue asignada por el usuario '{{0}}'. Solo se pueden editar los campos 'Estado' y 'Recordatorio', ya que son relevantes para la persona que continuará con el trabajo" | "La tâche a été assignée par l'utilisateur '{{0}}'. Seuls les champs 'Statut' et 'Rappel' peuvent être modifiés, car ils sont pertinents pour la personne qui poursuivra le travail" | "A tarefa foi atribuída pelo usuário '{{0}}'. Apenas os campos 'Status' e 'Lembrete' podem ser editados, pois são relevantes para quem continuará com o trabalho" | "Attività assegnata dall'utente '{{0}}'. Solo i campi 'Stato' e 'Promemoria' possono essere modificati, in quanto sono rilevanti per chi dovrà proseguire con il lavoro";
|
|
631
650
|
static get TaskAssignedToUserMessage(): "Aufgabe zugewiesen an den Benutzer '{{0}}'" | "Task assigned to user '{{0}}'" | "Tarea asignada al usuario '{{0}}'" | "Tâche assignée à l'utilisateur '{{0}}'" | "Tarefa atribuída ao usuário '{{0}}'" | "Attività assegnata all'utente '{{0}}'";
|
|
632
651
|
static get TaskConsideredExpiring(): "Die Aufgabe wird als ablaufend betrachtet, wenn" | "The task is considered expiring if" | "La tarea se considera por vencer si" | "La tâche est considérée comme expirante si" | "A tarefa é considerada vencendo se" | "L'attività è considerata in scadenza se";
|
|
@@ -188,6 +188,16 @@ export class SDKUI_Localizator {
|
|
|
188
188
|
default: return "Avanzate";
|
|
189
189
|
}
|
|
190
190
|
}
|
|
191
|
+
static get AggregateSearch() {
|
|
192
|
+
switch (this._cultureID) {
|
|
193
|
+
case CultureIDs.De_DE: return "Aggregierte Suche";
|
|
194
|
+
case CultureIDs.En_US: return "Aggregate search";
|
|
195
|
+
case CultureIDs.Es_ES: return "Búsqueda agregada";
|
|
196
|
+
case CultureIDs.Fr_FR: return "Recherche agrégée";
|
|
197
|
+
case CultureIDs.Pt_PT: return "Pesquisa agregada";
|
|
198
|
+
default: return "Ricerca aggregata";
|
|
199
|
+
}
|
|
200
|
+
}
|
|
191
201
|
static get All() {
|
|
192
202
|
switch (this._cultureID) {
|
|
193
203
|
case CultureIDs.De_DE: return "Alle";
|
|
@@ -785,6 +795,16 @@ export class SDKUI_Localizator {
|
|
|
785
795
|
default: return "Recupero Visto Uscire per Export";
|
|
786
796
|
}
|
|
787
797
|
}
|
|
798
|
+
static get CassettoDoganaleExportEUR1() {
|
|
799
|
+
switch (this._cultureID) {
|
|
800
|
+
case CultureIDs.De_DE: return "EUR1-Erholung für den Export";
|
|
801
|
+
case CultureIDs.En_US: return "EUR1 recovery for export";
|
|
802
|
+
case CultureIDs.Es_ES: return "Recuperación EUR1 para exportación";
|
|
803
|
+
case CultureIDs.Fr_FR: return "Récupération EUR1 pour l'export";
|
|
804
|
+
case CultureIDs.Pt_PT: return "Recuperação EUR1 para exportação";
|
|
805
|
+
default: return "Recupero EUR1 per Export";
|
|
806
|
+
}
|
|
807
|
+
}
|
|
788
808
|
static get CassettoDoganaleImportMRN() {
|
|
789
809
|
switch (this._cultureID) {
|
|
790
810
|
case CultureIDs.De_DE: return "MRN-Erholung für den Import";
|
|
@@ -1140,6 +1160,16 @@ export class SDKUI_Localizator {
|
|
|
1140
1160
|
default: return "Proseguendo le modifiche apportate andranno perse. Proseguire?";
|
|
1141
1161
|
}
|
|
1142
1162
|
}
|
|
1163
|
+
static get ConfirmRestoreDefaultSettings() {
|
|
1164
|
+
switch (this._cultureID) {
|
|
1165
|
+
case CultureIDs.De_DE: return "Bestätigen Sie das Zurücksetzen der Standardeinstellungen?";
|
|
1166
|
+
case CultureIDs.En_US: return "Do you confirm you want to restore default settings?";
|
|
1167
|
+
case CultureIDs.Es_ES: return "¿Confirmas que quieres restaurar la configuración predeterminada?";
|
|
1168
|
+
case CultureIDs.Fr_FR: return "Confirmez-vous vouloir restaurer les paramètres par défaut ?";
|
|
1169
|
+
case CultureIDs.Pt_PT: return "Confirma que deseja restaurar as configurações padrão?";
|
|
1170
|
+
default: return "Confermi di voler ripristinare le impostazioni predefinite?";
|
|
1171
|
+
}
|
|
1172
|
+
}
|
|
1143
1173
|
static get ConfirmSelectedDocumentsMessage() {
|
|
1144
1174
|
switch (this._cultureID) {
|
|
1145
1175
|
case CultureIDs.De_DE:
|
|
@@ -1996,7 +2026,7 @@ export class SDKUI_Localizator {
|
|
|
1996
2026
|
case CultureIDs.Es_ES: return "Suelta tu archivo aquí";
|
|
1997
2027
|
case CultureIDs.Fr_FR: return "Déposez votre fichier ici";
|
|
1998
2028
|
case CultureIDs.Pt_PT: return "Solte seu arquivo aqui";
|
|
1999
|
-
default: return "
|
|
2029
|
+
default: return "Trascina qui il tuo file";
|
|
2000
2030
|
}
|
|
2001
2031
|
}
|
|
2002
2032
|
static get DropFileToShare() {
|
|
@@ -2417,6 +2447,26 @@ export class SDKUI_Localizator {
|
|
|
2417
2447
|
default: return "Esporta";
|
|
2418
2448
|
}
|
|
2419
2449
|
}
|
|
2450
|
+
static get ExportEUR1() {
|
|
2451
|
+
switch (this._cultureID) {
|
|
2452
|
+
case CultureIDs.De_DE: return "Exportieren EUR1";
|
|
2453
|
+
case CultureIDs.En_US: return "Export EUR1";
|
|
2454
|
+
case CultureIDs.Es_ES: return "Exportar EUR1";
|
|
2455
|
+
case CultureIDs.Fr_FR: return "Exporter EUR1";
|
|
2456
|
+
case CultureIDs.Pt_PT: return "Exportar EUR1";
|
|
2457
|
+
default: return "Export - EUR1";
|
|
2458
|
+
}
|
|
2459
|
+
}
|
|
2460
|
+
static get ExportEUR1OutputFile() {
|
|
2461
|
+
switch (this._cultureID) {
|
|
2462
|
+
case CultureIDs.De_DE: return "Dateipfad für den Export (EUR1)";
|
|
2463
|
+
case CultureIDs.En_US: return "File Path for Export (EUR1)";
|
|
2464
|
+
case CultureIDs.Es_ES: return "Ruta de archivo para exportación (EUR1)";
|
|
2465
|
+
case CultureIDs.Fr_FR: return "Chemin du fichier à exporter (EUR1)";
|
|
2466
|
+
case CultureIDs.Pt_PT: return "Caminho do arquivo para exportação (EUR1)";
|
|
2467
|
+
default: return "Percorso del File per Export (EUR1)";
|
|
2468
|
+
}
|
|
2469
|
+
}
|
|
2420
2470
|
static get ExportTo() {
|
|
2421
2471
|
switch (this._cultureID) {
|
|
2422
2472
|
case CultureIDs.De_DE: return "Exportieren nach...";
|
|
@@ -2936,6 +2986,26 @@ export class SDKUI_Localizator {
|
|
|
2936
2986
|
default: return "Vai a";
|
|
2937
2987
|
}
|
|
2938
2988
|
}
|
|
2989
|
+
static get GoToDocument() {
|
|
2990
|
+
switch (this._cultureID) {
|
|
2991
|
+
case CultureIDs.De_DE: return "Gehe zum Dokument";
|
|
2992
|
+
case CultureIDs.En_US: return "Go to document";
|
|
2993
|
+
case CultureIDs.Es_ES: return "Ir al documento";
|
|
2994
|
+
case CultureIDs.Fr_FR: return "Aller au document";
|
|
2995
|
+
case CultureIDs.Pt_PT: return "Ir ao documento";
|
|
2996
|
+
default: return "Vai al documento";
|
|
2997
|
+
}
|
|
2998
|
+
}
|
|
2999
|
+
static get GoToDossier() {
|
|
3000
|
+
switch (this._cultureID) {
|
|
3001
|
+
case CultureIDs.De_DE: return "Gehe zur Praxis";
|
|
3002
|
+
case CultureIDs.En_US: return "Go to practice";
|
|
3003
|
+
case CultureIDs.Es_ES: return "Ir a la práctica";
|
|
3004
|
+
case CultureIDs.Fr_FR: return "Aller à la pratique";
|
|
3005
|
+
case CultureIDs.Pt_PT: return "Ir à prática";
|
|
3006
|
+
default: return "Vai alla pratica";
|
|
3007
|
+
}
|
|
3008
|
+
}
|
|
2939
3009
|
static get GoToToday() {
|
|
2940
3010
|
switch (this._cultureID) {
|
|
2941
3011
|
case CultureIDs.De_DE: return "Gehe zu heute";
|
|
@@ -2946,6 +3016,16 @@ export class SDKUI_Localizator {
|
|
|
2946
3016
|
default: return "Vai a oggi";
|
|
2947
3017
|
}
|
|
2948
3018
|
}
|
|
3019
|
+
static get GoToWorkgroup() {
|
|
3020
|
+
switch (this._cultureID) {
|
|
3021
|
+
case CultureIDs.De_DE: return "Gehe zur Arbeitsgruppe";
|
|
3022
|
+
case CultureIDs.En_US: return "Go to workgroup";
|
|
3023
|
+
case CultureIDs.Es_ES: return "Ir al grupo de trabajo";
|
|
3024
|
+
case CultureIDs.Fr_FR: return "Aller au groupe de travail";
|
|
3025
|
+
case CultureIDs.Pt_PT: return "Ir para grupo de trabalho";
|
|
3026
|
+
default: return "Vai al gruppo di lavoro";
|
|
3027
|
+
}
|
|
3028
|
+
}
|
|
2949
3029
|
static get Grids() {
|
|
2950
3030
|
switch (this._cultureID) {
|
|
2951
3031
|
case CultureIDs.De_DE: return "Raster";
|
|
@@ -3436,6 +3516,16 @@ export class SDKUI_Localizator {
|
|
|
3436
3516
|
default: return "Esci";
|
|
3437
3517
|
}
|
|
3438
3518
|
}
|
|
3519
|
+
static get LogScreenFolder() {
|
|
3520
|
+
switch (this._cultureID) {
|
|
3521
|
+
case CultureIDs.De_DE: return "Ordner für Screenshot-Protokolle";
|
|
3522
|
+
case CultureIDs.En_US: return "Log screenshot folder";
|
|
3523
|
+
case CultureIDs.Es_ES: return "Carpeta de registro de capturas de pantalla";
|
|
3524
|
+
case CultureIDs.Fr_FR: return "Dossier de journal des captures d'écran";
|
|
3525
|
+
case CultureIDs.Pt_PT: return "Pasta de log de capturas de tela";
|
|
3526
|
+
default: return "Cartella di log screenshot";
|
|
3527
|
+
}
|
|
3528
|
+
}
|
|
3439
3529
|
static get Low() {
|
|
3440
3530
|
switch (this._cultureID) {
|
|
3441
3531
|
case CultureIDs.De_DE: return "Niedrig";
|
|
@@ -3456,6 +3546,16 @@ export class SDKUI_Localizator {
|
|
|
3456
3546
|
default: return "Rendi editabile";
|
|
3457
3547
|
}
|
|
3458
3548
|
}
|
|
3549
|
+
static get ManageFromTaskPanel() {
|
|
3550
|
+
switch (this._cultureID) {
|
|
3551
|
+
case CultureIDs.De_DE: return "Verwalten Sie im Aufgabenfenster";
|
|
3552
|
+
case CultureIDs.En_US: return "Manage from task panel";
|
|
3553
|
+
case CultureIDs.Es_ES: return "Gestionar desde el panel de tareas";
|
|
3554
|
+
case CultureIDs.Fr_FR: return "Gérer depuis le panneau des tâches";
|
|
3555
|
+
case CultureIDs.Pt_PT: return "Gerir a partir do painel de tarefas";
|
|
3556
|
+
default: return "Gestisci dal pannello attività";
|
|
3557
|
+
}
|
|
3558
|
+
}
|
|
3459
3559
|
static get Mark() {
|
|
3460
3560
|
switch (this._cultureID) {
|
|
3461
3561
|
case CultureIDs.De_DE: return "Markierung";
|
|
@@ -4258,6 +4358,16 @@ export class SDKUI_Localizator {
|
|
|
4258
4358
|
default: return "Non disponibile";
|
|
4259
4359
|
}
|
|
4260
4360
|
}
|
|
4361
|
+
static get MaximumNumberOfResults() {
|
|
4362
|
+
switch (this._cultureID) {
|
|
4363
|
+
case CultureIDs.De_DE: return "Maximale Anzahl von Ergebnissen";
|
|
4364
|
+
case CultureIDs.En_US: return "Maximum number of results";
|
|
4365
|
+
case CultureIDs.Es_ES: return "Número máximo de resultados";
|
|
4366
|
+
case CultureIDs.Fr_FR: return "Nombre maximum de résultats";
|
|
4367
|
+
case CultureIDs.Pt_PT: return "Número máximo de resultados";
|
|
4368
|
+
default: return "Numero massimo di risultati";
|
|
4369
|
+
}
|
|
4370
|
+
}
|
|
4261
4371
|
static get OfSystem() {
|
|
4262
4372
|
switch (this._cultureID) {
|
|
4263
4373
|
case CultureIDs.De_DE: return "Des Systems";
|
|
@@ -4868,6 +4978,32 @@ export class SDKUI_Localizator {
|
|
|
4868
4978
|
default: return "Rinviata";
|
|
4869
4979
|
}
|
|
4870
4980
|
}
|
|
4981
|
+
static get PotentiallyUnsafeContent() {
|
|
4982
|
+
switch (this._cultureID) {
|
|
4983
|
+
case CultureIDs.De_DE: return "Potenziell unsichere Inhalte";
|
|
4984
|
+
case CultureIDs.En_US: return "Potentially Unsafe Content";
|
|
4985
|
+
case CultureIDs.Es_ES: return "Contenido potencialmente no seguro";
|
|
4986
|
+
case CultureIDs.Fr_FR: return "Contenu potentiellement non sécurisé";
|
|
4987
|
+
case CultureIDs.Pt_PT: return "Conteúdo potencialmente não seguro";
|
|
4988
|
+
default: return "Contenuti potenzialmente non sicuri";
|
|
4989
|
+
}
|
|
4990
|
+
}
|
|
4991
|
+
static get PotentiallyUnsafeCodePatternsDetected() {
|
|
4992
|
+
switch (this._cultureID) {
|
|
4993
|
+
case CultureIDs.De_DE:
|
|
4994
|
+
return "{{0}} potenziell unsicheres Code-Muster in diesem Dokument erkannt.";
|
|
4995
|
+
case CultureIDs.En_US:
|
|
4996
|
+
return "{{0}} potentially unsafe code pattern detected in this document.";
|
|
4997
|
+
case CultureIDs.Es_ES:
|
|
4998
|
+
return "Se han detectado {{0}} patrones de código potencialmente no seguro en este documento.";
|
|
4999
|
+
case CultureIDs.Fr_FR:
|
|
5000
|
+
return "{{0}} motifs de code potentiellement non sécurisé détectés dans ce document.";
|
|
5001
|
+
case CultureIDs.Pt_PT:
|
|
5002
|
+
return "{{0}} padrões de código potencialmente não seguro detectados neste documento.";
|
|
5003
|
+
default:
|
|
5004
|
+
return "Sono stati rilevati {{0}} pattern di codice potenzialmente non sicuro in questo documento.";
|
|
5005
|
+
}
|
|
5006
|
+
}
|
|
4871
5007
|
static get PreparingFileForArchive() {
|
|
4872
5008
|
switch (this._cultureID) {
|
|
4873
5009
|
case CultureIDs.De_DE: return "Datei für Archivierung vorbereiten...";
|
|
@@ -5265,6 +5401,16 @@ export class SDKUI_Localizator {
|
|
|
5265
5401
|
default: return "Richiedi a";
|
|
5266
5402
|
}
|
|
5267
5403
|
}
|
|
5404
|
+
static get SearchType() {
|
|
5405
|
+
switch (this._cultureID) {
|
|
5406
|
+
case CultureIDs.De_DE: return "Suchtyp";
|
|
5407
|
+
case CultureIDs.En_US: return "Search type";
|
|
5408
|
+
case CultureIDs.Es_ES: return "Tipo de búsqueda";
|
|
5409
|
+
case CultureIDs.Fr_FR: return "Type de recherche";
|
|
5410
|
+
case CultureIDs.Pt_PT: return "Tipo de pesquisa";
|
|
5411
|
+
default: return "Tipo di ricerca";
|
|
5412
|
+
}
|
|
5413
|
+
}
|
|
5268
5414
|
static get Required() {
|
|
5269
5415
|
switch (this._cultureID) {
|
|
5270
5416
|
case CultureIDs.De_DE: return "Obligatorisch";
|
|
@@ -5425,6 +5571,16 @@ export class SDKUI_Localizator {
|
|
|
5425
5571
|
default: return "Dettagli del risultato";
|
|
5426
5572
|
}
|
|
5427
5573
|
}
|
|
5574
|
+
static get ResultsPerPage() {
|
|
5575
|
+
switch (this._cultureID) {
|
|
5576
|
+
case CultureIDs.De_DE: return "Ergebnisse pro Seite";
|
|
5577
|
+
case CultureIDs.En_US: return "Results per page";
|
|
5578
|
+
case CultureIDs.Es_ES: return "Resultados por página";
|
|
5579
|
+
case CultureIDs.Fr_FR: return "Résultats par page";
|
|
5580
|
+
case CultureIDs.Pt_PT: return "Resultados por página";
|
|
5581
|
+
default: return "Risultati per pagina";
|
|
5582
|
+
}
|
|
5583
|
+
}
|
|
5428
5584
|
static get RetrieveFile() {
|
|
5429
5585
|
switch (this._cultureID) {
|
|
5430
5586
|
case CultureIDs.De_DE: return "Dateiwiederherstellung";
|
|
@@ -5786,6 +5942,16 @@ export class SDKUI_Localizator {
|
|
|
5786
5942
|
default: return "Impostazioni";
|
|
5787
5943
|
}
|
|
5788
5944
|
}
|
|
5945
|
+
static get SettingSavedSuccessfully() {
|
|
5946
|
+
switch (this._cultureID) {
|
|
5947
|
+
case CultureIDs.De_DE: return "Einstellung erfolgreich gespeichert";
|
|
5948
|
+
case CultureIDs.En_US: return "Setting saved successfully";
|
|
5949
|
+
case CultureIDs.Es_ES: return "Configuración guardada con éxito";
|
|
5950
|
+
case CultureIDs.Fr_FR: return "Paramètre enregistré avec succès";
|
|
5951
|
+
case CultureIDs.Pt_PT: return "Configuração salva com sucesso";
|
|
5952
|
+
default: return "Impostazione salvata con successo";
|
|
5953
|
+
}
|
|
5954
|
+
}
|
|
5789
5955
|
static get Severity() {
|
|
5790
5956
|
switch (this._cultureID) {
|
|
5791
5957
|
case CultureIDs.De_DE: return "Schweregrad";
|
|
@@ -5886,6 +6052,16 @@ export class SDKUI_Localizator {
|
|
|
5886
6052
|
default: return "Mostra tutti";
|
|
5887
6053
|
}
|
|
5888
6054
|
}
|
|
6055
|
+
static get ShowColumnSelection() {
|
|
6056
|
+
switch (this._cultureID) {
|
|
6057
|
+
case CultureIDs.De_DE: return "Spaltenauswahl anzeigen";
|
|
6058
|
+
case CultureIDs.En_US: return "Show column selection";
|
|
6059
|
+
case CultureIDs.Es_ES: return "Mostrar selección de columnas";
|
|
6060
|
+
case CultureIDs.Fr_FR: return "Afficher la sélection de colonnes";
|
|
6061
|
+
case CultureIDs.Pt_PT: return "Mostrar seleção de colunas";
|
|
6062
|
+
default: return "Mostra selezione colonne";
|
|
6063
|
+
}
|
|
6064
|
+
}
|
|
5889
6065
|
static get ShowFloatingBar() {
|
|
5890
6066
|
switch (this._cultureID) {
|
|
5891
6067
|
case CultureIDs.De_DE: return "Floating-Leiste anzeigen";
|
|
@@ -6216,6 +6392,16 @@ export class SDKUI_Localizator {
|
|
|
6216
6392
|
default: return "Oggetto";
|
|
6217
6393
|
}
|
|
6218
6394
|
}
|
|
6395
|
+
static get SubjectType() {
|
|
6396
|
+
switch (this._cultureID) {
|
|
6397
|
+
case CultureIDs.De_DE: return "Betreff-Typ";
|
|
6398
|
+
case CultureIDs.En_US: return "Subject type";
|
|
6399
|
+
case CultureIDs.Es_ES: return "Tipo de asunto";
|
|
6400
|
+
case CultureIDs.Fr_FR: return "Type de sujet";
|
|
6401
|
+
case CultureIDs.Pt_PT: return "Tipo de assunto";
|
|
6402
|
+
default: return "Tipo soggetto";
|
|
6403
|
+
}
|
|
6404
|
+
}
|
|
6219
6405
|
static get Summary() {
|
|
6220
6406
|
switch (this._cultureID) {
|
|
6221
6407
|
case CultureIDs.De_DE: return "Zusammenfassung";
|
|
@@ -6236,6 +6422,16 @@ export class SDKUI_Localizator {
|
|
|
6236
6422
|
default: return "Cambia utente";
|
|
6237
6423
|
}
|
|
6238
6424
|
}
|
|
6425
|
+
static get TargetedSearch() {
|
|
6426
|
+
switch (this._cultureID) {
|
|
6427
|
+
case CultureIDs.De_DE: return "Gezielte Suche";
|
|
6428
|
+
case CultureIDs.En_US: return "Targeted search";
|
|
6429
|
+
case CultureIDs.Es_ES: return "Búsqueda dirigida";
|
|
6430
|
+
case CultureIDs.Fr_FR: return "Recherche ciblée";
|
|
6431
|
+
case CultureIDs.Pt_PT: return "Pesquisa direcionada";
|
|
6432
|
+
default: return "Ricerca puntuale";
|
|
6433
|
+
}
|
|
6434
|
+
}
|
|
6239
6435
|
static get TaskAssignedMessage() {
|
|
6240
6436
|
switch (this._cultureID) {
|
|
6241
6437
|
case CultureIDs.De_DE: return "Die Aufgabe wurde von Benutzer '{{0}}' zugewiesen. Nur die Felder 'Status' und 'Erinnerung' können bearbeitet werden, da sie für die Person, die mit der Arbeit fortfährt, relevant sind";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { HidingEvent } from "devextreme/ui/context_menu";
|
|
3
3
|
interface TMCommandsContextMenuProps {
|
|
4
|
-
target
|
|
4
|
+
target?: string | Element | undefined;
|
|
5
5
|
menuItems: Array<any>;
|
|
6
6
|
id?: string;
|
|
7
7
|
showEvent?: string | {
|
|
@@ -9,6 +9,8 @@ interface TMCommandsContextMenuProps {
|
|
|
9
9
|
name?: string;
|
|
10
10
|
} | undefined;
|
|
11
11
|
onHiding?: ((e: HidingEvent<any>) => void) | undefined;
|
|
12
|
+
trigger?: 'right' | 'left';
|
|
13
|
+
children?: React.ReactNode;
|
|
12
14
|
}
|
|
13
|
-
export declare const TMCommandsContextMenu: React.MemoExoticComponent<({ target, menuItems, id, showEvent, onHiding }: TMCommandsContextMenuProps) => import("react/jsx-runtime").JSX.Element>;
|
|
15
|
+
export declare const TMCommandsContextMenu: React.MemoExoticComponent<({ target, menuItems, id, showEvent, onHiding, trigger, children }: TMCommandsContextMenuProps) => import("react/jsx-runtime").JSX.Element>;
|
|
14
16
|
export {};
|
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import React from "react";
|
|
3
|
-
import { ContextMenu } from "
|
|
4
|
-
export const TMCommandsContextMenu = React.memo(({ target, menuItems, id, showEvent = 'contextmenu', onHiding }) => {
|
|
5
|
-
|
|
2
|
+
import React, { useMemo } from "react";
|
|
3
|
+
import { ContextMenu } from "../components/NewComponents/ContextMenu";
|
|
4
|
+
export const TMCommandsContextMenu = React.memo(({ target, menuItems, id, showEvent = 'contextmenu', onHiding, trigger = 'left', children }) => {
|
|
5
|
+
// Convert DevExtreme menu items format to TMContextMenu format
|
|
6
|
+
const convertedItems = useMemo(() => {
|
|
7
|
+
return menuItems.map(item => ({
|
|
8
|
+
name: item.text,
|
|
9
|
+
icon: item.icon,
|
|
10
|
+
onClick: item.onClick,
|
|
11
|
+
disabled: item.disabled,
|
|
12
|
+
beginGroup: item.beginGroup,
|
|
13
|
+
visible: item.visible,
|
|
14
|
+
}));
|
|
15
|
+
}, [menuItems]);
|
|
16
|
+
return (_jsx(ContextMenu, { target: typeof target === 'string' ? target : undefined, items: convertedItems, trigger: trigger, children: children }));
|
|
6
17
|
});
|
package/lib/helper/TMIcons.d.ts
CHANGED
|
@@ -238,6 +238,7 @@ export declare function IconFunction(props: Readonly<React.SVGProps<SVGSVGElemen
|
|
|
238
238
|
export declare function IconNull(props?: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
|
|
239
239
|
declare function IconZoomOutLinear(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
|
|
240
240
|
declare function IconZoomInLinear(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
|
|
241
|
+
export declare function IconZoomAuto(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
|
|
241
242
|
declare function IconRoundFileUpload(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
|
|
242
243
|
declare function IconRotate(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
|
|
243
244
|
declare function IconPrintOutline(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -275,4 +276,7 @@ export declare function IconUnpair(props: React.SVGProps<SVGSVGElement>): import
|
|
|
275
276
|
export declare function IconCtrlWorkflow(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
|
|
276
277
|
export declare function IconBackhandIndexPointingRight(props: Readonly<React.SVGProps<SVGSVGElement>>): import("react/jsx-runtime").JSX.Element;
|
|
277
278
|
export declare function IconMoveToFolder(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
|
|
279
|
+
export declare function IconCustom(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
|
|
280
|
+
export declare function IconSeparator(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
|
|
281
|
+
export declare function IconCache(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
|
|
278
282
|
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 };
|
package/lib/helper/TMIcons.js
CHANGED
|
@@ -575,6 +575,9 @@ function IconZoomOutLinear(props) {
|
|
|
575
575
|
function IconZoomInLinear(props) {
|
|
576
576
|
return (_jsxs("svg", { fontSize: props?.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: "M19 11h-6V5a1 1 0 0 0-2 0v6H5a1 1 0 0 0 0 2h6v6a1 1 0 0 0 2 0v-6h6a1 1 0 0 0 0-2" }), " "] }));
|
|
577
577
|
}
|
|
578
|
+
export function IconZoomAuto(props) {
|
|
579
|
+
return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "1em", height: "1em", fontSize: props?.fontSize ? props.fontSize : FONTSIZE, ...props, children: _jsx("path", { fill: "currentColor", d: "m4.4 20.308l-.708-.708l3.6-3.6H4v-1h5v5H8v-3.292zm15.2 0l-3.6-3.6V20h-1v-5h5v1h-3.292l3.6 3.6zM4 9V8h3.292l-3.6-3.6l.708-.708l3.6 3.6V4h1v5zm11 0V4h1v3.292l3.6-3.6l.708.708l-3.6 3.6H20v1z" }) }));
|
|
580
|
+
}
|
|
578
581
|
function IconRoundFileUpload(props) {
|
|
579
582
|
return (_jsxs("svg", { fontSize: props?.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: "M2 20V4h8l2 2h10v14zm9-3h2v-4.2l1.6 1.6L16 13l-4-4l-4 4l1.4 1.4l1.6-1.6z" }), " "] }));
|
|
580
583
|
}
|
|
@@ -677,9 +680,7 @@ export function IconUnpair(props) {
|
|
|
677
680
|
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" }), " "] }));
|
|
678
681
|
}
|
|
679
682
|
export function IconCtrlWorkflow(props) {
|
|
680
|
-
return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg",
|
|
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
|
+
return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "1em", height: "1em", ...props, children: _jsx("path", { fill: "currentColor", d: "M4 12.308V18V6zm10.577 7.923q.54 0 .924-.384q.384-.383.384-.924q0-.54-.384-.924q-.384-.383-.924-.383t-.924.383t-.384.924t.384.924t.924.384M20 12q.54 0 .924-.384q.384-.383.384-.924q0-.54-.384-.924q-.383-.383-.924-.383t-.924.383q-.384.384-.384.924t.384.924T20 12M6.5 10.5h5.27v-1H6.5zm0 4h5.27v-1H6.5zM4.616 19q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616h-1q0-.231-.192-.424T19.385 6H4.615q-.23 0-.423.192T4 6.616v10.769q0 .23.192.423t.423.192h5.654v1zm9.961 2.23q-.961 0-1.635-.672q-.673-.674-.673-1.635q0-.84.515-1.461q.514-.622 1.293-.787v-2.367H19.5V12.94q-.779-.165-1.293-.786q-.515-.621-.515-1.462q0-.961.674-1.634q.673-.674 1.634-.674t1.635.674t.673 1.634q0 .84-.515 1.462q-.514.621-1.293.787v2.367h-5.423v1.367q.779.166 1.293.787q.515.62.515 1.461q0 .962-.673 1.635t-1.635.673" }) }));
|
|
683
684
|
}
|
|
684
685
|
export function IconBackhandIndexPointingRight(props) {
|
|
685
686
|
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" }) })] }));
|
|
@@ -687,4 +688,13 @@ export function IconBackhandIndexPointingRight(props) {
|
|
|
687
688
|
export function IconMoveToFolder(props) {
|
|
688
689
|
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" }) }));
|
|
689
690
|
}
|
|
691
|
+
export function IconCustom(props) {
|
|
692
|
+
return (_jsx("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: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeMiterlimit: "10", strokeWidth: "1.5", d: "M14 17h6m-3 3v-6M5.6 4h2.8A1.6 1.6 0 0 1 10 5.6v2.8A1.6 1.6 0 0 1 8.4 10H5.6A1.6 1.6 0 0 1 4 8.4V5.6A1.6 1.6 0 0 1 5.6 4m0 10h2.8a1.6 1.6 0 0 1 1.6 1.6v2.8A1.6 1.6 0 0 1 8.4 20H5.6A1.6 1.6 0 0 1 4 18.4v-2.8A1.6 1.6 0 0 1 5.6 14m10-10h2.8A1.6 1.6 0 0 1 20 5.6v2.8a1.6 1.6 0 0 1-1.6 1.6h-2.8A1.6 1.6 0 0 1 14 8.4V5.6A1.6 1.6 0 0 1 15.6 4" }) }));
|
|
693
|
+
}
|
|
694
|
+
export function IconSeparator(props) {
|
|
695
|
+
return (_jsx("svg", { fontSize: props.fontSize ?? FONTSIZE, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "1em", height: "1em", style: { transform: 'rotate(90deg)', ...props.style }, ...props, children: _jsxs("g", { fill: "currentColor", children: [_jsx("path", { d: "M16 5a1 1 0 1 0 0-2H8a1 1 0 1 0 0 2zm0 2a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2zm1 5a1 1 0 0 1-1 1H8a1 1 0 1 1 0-2h8a1 1 0 0 1 1 1m-1 9a1 1 0 1 0 0-2H8a1 1 0 1 0 0 2z", opacity: ".5" }), _jsx("path", { fillRule: "evenodd", d: "M21 16a1 1 0 0 1-1 1H4a1 1 0 1 1 0-2h16a1 1 0 0 1 1 1", clipRule: "evenodd" })] }) }));
|
|
696
|
+
}
|
|
697
|
+
export function IconCache(props) {
|
|
698
|
+
return (_jsx("svg", { fontSize: props.fontSize ?? FONTSIZE, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "1em", height: "1em", ...props, children: _jsxs("g", { fill: "none", children: [" ", _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6 8a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3H9a3 3 0 0 1-3-3V8zm-2 .17A3.001 3.001 0 0 0 2 11v7a3 3 0 0 0 3 3h10a3.001 3.001 0 0 0 2.83-2H9a5 5 0 0 1-5-5V8.17zM14 3a1 1 0 0 1 1 1v5.586l1.293-1.293a1 1 0 1 1 1.414 1.414l-3 3a1 1 0 0 1-1.414 0l-3-3a1 1 0 1 1 1.414-1.414L13 9.586V4a1 1 0 0 1 1-1z", fill: "currentColor" }), " "] }) }));
|
|
699
|
+
}
|
|
690
700
|
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 };
|