@topconsultnpm/sdkui-react 6.19.0 → 6.20.0-dev1.100
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/components/NewComponents/ContextMenu/TMContextMenu.d.ts +4 -0
- package/lib/components/NewComponents/ContextMenu/TMContextMenu.js +441 -0
- package/lib/components/NewComponents/ContextMenu/hooks.d.ts +18 -0
- package/lib/components/NewComponents/ContextMenu/hooks.js +120 -0
- package/lib/components/NewComponents/ContextMenu/index.d.ts +5 -0
- package/lib/components/NewComponents/ContextMenu/index.js +3 -0
- package/lib/components/NewComponents/ContextMenu/styles.d.ts +35 -0
- package/lib/components/NewComponents/ContextMenu/styles.js +428 -0
- package/lib/components/NewComponents/ContextMenu/types.d.ts +39 -0
- package/lib/components/NewComponents/ContextMenu/types.js +1 -0
- 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.d.ts +4 -0
- package/lib/components/NewComponents/FloatingMenuBar/TMFloatingMenuBar.js +821 -0
- package/lib/components/NewComponents/FloatingMenuBar/index.d.ts +2 -0
- package/lib/components/NewComponents/FloatingMenuBar/index.js +2 -0
- package/lib/components/NewComponents/FloatingMenuBar/styles.d.ts +54 -0
- package/lib/components/NewComponents/FloatingMenuBar/styles.js +419 -0
- package/lib/components/NewComponents/FloatingMenuBar/types.d.ts +36 -0
- package/lib/components/NewComponents/FloatingMenuBar/types.js +1 -0
- package/lib/components/base/TMAccordion.js +2 -2
- package/lib/components/base/TMAccordionNew.js +35 -14
- 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 +19 -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 +1 -1
- package/lib/components/choosers/TMDistinctValues.js +1 -1
- package/lib/components/choosers/TMInvoiceRetrieveFormats.js +1 -1
- package/lib/components/choosers/TMMetadataChooser.js +8 -1
- package/lib/components/choosers/TMOrderRetrieveFormats.js +1 -1
- package/lib/components/choosers/TMUserChooser.d.ts +0 -5
- package/lib/components/choosers/TMUserChooser.js +25 -45
- package/lib/components/editors/TMDateBox.js +18 -9
- package/lib/components/editors/TMHtmlEditor.js +1 -1
- package/lib/components/editors/TMMetadataValues.js +37 -5
- package/lib/components/editors/TMTextArea.js +18 -30
- package/lib/components/editors/TMTextBox.js +6 -3
- 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 +460 -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.d.ts +1 -7
- package/lib/components/features/documents/TMDcmtBlog.js +29 -2
- package/lib/components/features/documents/TMDcmtForm.d.ts +14 -2
- package/lib/components/features/documents/TMDcmtForm.js +466 -232
- package/lib/components/features/documents/TMDcmtPreview.js +44 -78
- 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} +6 -11
- 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 +45 -10
- package/lib/components/features/search/TMSearchQueryPanel.d.ts +1 -0
- package/lib/components/features/search/TMSearchQueryPanel.js +19 -18
- package/lib/components/features/search/TMSearchResult.d.ts +3 -0
- package/lib/components/features/search/TMSearchResult.js +229 -160
- package/lib/components/features/search/TMSearchResultsMenuItems.d.ts +3 -3
- package/lib/components/features/search/TMSearchResultsMenuItems.js +216 -180
- 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/{TMViewHistoryDcmtForm.d.ts → TMViewHistoryDcmt.d.ts} +3 -3
- package/lib/components/features/search/{TMViewHistoryDcmtForm.js → TMViewHistoryDcmt.js} +83 -13
- package/lib/components/features/tasks/TMTaskForm.js +20 -1
- 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 +43 -36
- 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 +12 -7
- 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 +34 -6
- 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/index.d.ts +5 -3
- package/lib/components/index.js +5 -3
- package/lib/components/query/TMQueryEditor.d.ts +2 -1
- package/lib/components/query/TMQueryEditor.js +92 -92
- package/lib/components/settings/SettingsAppearance.d.ts +2 -1
- package/lib/components/settings/SettingsAppearance.js +99 -30
- 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 -14
- package/lib/helper/SDKUI_Globals.js +6 -0
- package/lib/helper/SDKUI_Localizator.d.ts +24 -1
- package/lib/helper/SDKUI_Localizator.js +255 -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/TMUtils.d.ts +3 -1
- package/lib/helper/TMUtils.js +51 -0
- package/lib/helper/checkinCheckoutManager.d.ts +85 -0
- package/lib/helper/checkinCheckoutManager.js +348 -0
- package/lib/helper/devextremeCustomMessages.d.ts +30 -0
- package/lib/helper/devextremeCustomMessages.js +30 -0
- package/lib/helper/helpers.d.ts +3 -1
- package/lib/helper/helpers.js +31 -4
- package/lib/helper/index.d.ts +3 -0
- package/lib/helper/index.js +3 -0
- package/lib/helper/queryHelper.d.ts +1 -1
- package/lib/helper/queryHelper.js +46 -4
- 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/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 +55 -52
- 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
- package/lib/helper/cicoHelper.d.ts +0 -31
- package/lib/helper/cicoHelper.js +0 -155
|
@@ -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";
|
|
@@ -278,6 +288,16 @@ export class SDKUI_Localizator {
|
|
|
278
288
|
default: return "Alfabetico";
|
|
279
289
|
}
|
|
280
290
|
}
|
|
291
|
+
static get Anomalies() {
|
|
292
|
+
switch (this._cultureID) {
|
|
293
|
+
case CultureIDs.De_DE: return "Anomalien";
|
|
294
|
+
case CultureIDs.En_US: return "Anomalies";
|
|
295
|
+
case CultureIDs.Es_ES: return "Anomalías";
|
|
296
|
+
case CultureIDs.Fr_FR: return "Anomalies";
|
|
297
|
+
case CultureIDs.Pt_PT: return "Anomalias";
|
|
298
|
+
default: return "Anomalie";
|
|
299
|
+
}
|
|
300
|
+
}
|
|
281
301
|
static get Answer() {
|
|
282
302
|
switch (this._cultureID) {
|
|
283
303
|
case CultureIDs.De_DE: return "Antwort";
|
|
@@ -775,6 +795,16 @@ export class SDKUI_Localizator {
|
|
|
775
795
|
default: return "Recupero Visto Uscire per Export";
|
|
776
796
|
}
|
|
777
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
|
+
}
|
|
778
808
|
static get CassettoDoganaleImportMRN() {
|
|
779
809
|
switch (this._cultureID) {
|
|
780
810
|
case CultureIDs.De_DE: return "MRN-Erholung für den Import";
|
|
@@ -835,6 +865,22 @@ export class SDKUI_Localizator {
|
|
|
835
865
|
default: return "Check in";
|
|
836
866
|
}
|
|
837
867
|
}
|
|
868
|
+
static get CheckInElementConfirm() {
|
|
869
|
+
switch (this._cultureID) {
|
|
870
|
+
case CultureIDs.De_DE:
|
|
871
|
+
return "Das Element '{{0}}' einchecken?";
|
|
872
|
+
case CultureIDs.En_US:
|
|
873
|
+
return "Check in the element '{{0}}'?";
|
|
874
|
+
case CultureIDs.Es_ES:
|
|
875
|
+
return "¿Realizar el check-in del elemento '{{0}}'?";
|
|
876
|
+
case CultureIDs.Fr_FR:
|
|
877
|
+
return "Effectuer le check-in de l’élément '{{0}}'?";
|
|
878
|
+
case CultureIDs.Pt_PT:
|
|
879
|
+
return "Efetuar o check-in do elemento '{{0}}'?";
|
|
880
|
+
default:
|
|
881
|
+
return "Eseguire il check-in dell’elemento '{{0}}'?";
|
|
882
|
+
}
|
|
883
|
+
}
|
|
838
884
|
static get CheckInOutSettingsNotice() {
|
|
839
885
|
switch (this._cultureID) {
|
|
840
886
|
case CultureIDs.De_DE:
|
|
@@ -852,6 +898,22 @@ export class SDKUI_Localizator {
|
|
|
852
898
|
return "Puoi modificare questa impostazione in “Ricerca → Check in/Check out” in qualsiasi momento.";
|
|
853
899
|
}
|
|
854
900
|
}
|
|
901
|
+
static get CheckInSuccessMessage() {
|
|
902
|
+
switch (this._cultureID) {
|
|
903
|
+
case CultureIDs.De_DE:
|
|
904
|
+
return "Check-in erfolgreich abgeschlossen! Löschen Sie die Datei aus dem Dateisystem.";
|
|
905
|
+
case CultureIDs.En_US:
|
|
906
|
+
return "Check-in completed successfully! Delete the document from the file system.";
|
|
907
|
+
case CultureIDs.Es_ES:
|
|
908
|
+
return "¡Check-in completado con éxito! Elimine el archivo del sistema de archivos.";
|
|
909
|
+
case CultureIDs.Fr_FR:
|
|
910
|
+
return "Check-in terminé avec succès ! Supprimez le fichier du système de fichiers.";
|
|
911
|
+
case CultureIDs.Pt_PT:
|
|
912
|
+
return "Check-in concluído com sucesso! Elimine o ficheiro do sistema de ficheiros.";
|
|
913
|
+
default:
|
|
914
|
+
return "Check-in completato con successo! Cancella il documento dal file system.";
|
|
915
|
+
}
|
|
916
|
+
}
|
|
855
917
|
static get Checkmark() {
|
|
856
918
|
switch (this._cultureID) {
|
|
857
919
|
case CultureIDs.De_DE: return "Häkchen";
|
|
@@ -1098,6 +1160,16 @@ export class SDKUI_Localizator {
|
|
|
1098
1160
|
default: return "Proseguendo le modifiche apportate andranno perse. Proseguire?";
|
|
1099
1161
|
}
|
|
1100
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
|
+
}
|
|
1101
1173
|
static get ConfirmSelectedDocumentsMessage() {
|
|
1102
1174
|
switch (this._cultureID) {
|
|
1103
1175
|
case CultureIDs.De_DE:
|
|
@@ -1274,6 +1346,16 @@ export class SDKUI_Localizator {
|
|
|
1274
1346
|
default: return "Lingua";
|
|
1275
1347
|
}
|
|
1276
1348
|
}
|
|
1349
|
+
static get Current() {
|
|
1350
|
+
switch (this._cultureID) {
|
|
1351
|
+
case CultureIDs.De_DE: return "Aktuell";
|
|
1352
|
+
case CultureIDs.En_US: return "Current";
|
|
1353
|
+
case CultureIDs.Es_ES: return "Actual";
|
|
1354
|
+
case CultureIDs.Fr_FR: return "Actuel";
|
|
1355
|
+
case CultureIDs.Pt_PT: return "Atual";
|
|
1356
|
+
default: return "Corrente";
|
|
1357
|
+
}
|
|
1358
|
+
}
|
|
1277
1359
|
static get CurrentUserExtract() {
|
|
1278
1360
|
switch (this._cultureID) {
|
|
1279
1361
|
case CultureIDs.De_DE: return "Auszug aus dem aktuellen Benutzer und änderbar";
|
|
@@ -1944,7 +2026,7 @@ export class SDKUI_Localizator {
|
|
|
1944
2026
|
case CultureIDs.Es_ES: return "Suelta tu archivo aquí";
|
|
1945
2027
|
case CultureIDs.Fr_FR: return "Déposez votre fichier ici";
|
|
1946
2028
|
case CultureIDs.Pt_PT: return "Solte seu arquivo aqui";
|
|
1947
|
-
default: return "
|
|
2029
|
+
default: return "Trascina qui il tuo file";
|
|
1948
2030
|
}
|
|
1949
2031
|
}
|
|
1950
2032
|
static get DropFileToShare() {
|
|
@@ -2093,6 +2175,22 @@ export class SDKUI_Localizator {
|
|
|
2093
2175
|
default: return "Ordine elettronico";
|
|
2094
2176
|
}
|
|
2095
2177
|
}
|
|
2178
|
+
static get ElementNameConventionError() {
|
|
2179
|
+
switch (this._cultureID) {
|
|
2180
|
+
case CultureIDs.De_DE:
|
|
2181
|
+
return "Der Name des Elements ist nicht konform";
|
|
2182
|
+
case CultureIDs.En_US:
|
|
2183
|
+
return "The element name does not comply";
|
|
2184
|
+
case CultureIDs.Es_ES:
|
|
2185
|
+
return "El nombre del elemento no es conforme";
|
|
2186
|
+
case CultureIDs.Fr_FR:
|
|
2187
|
+
return "Le nom de l’élément n’est pas conforme";
|
|
2188
|
+
case CultureIDs.Pt_PT:
|
|
2189
|
+
return "O nome do elemento não está conforme";
|
|
2190
|
+
default:
|
|
2191
|
+
return "Il nome dell’elemento non è conforme";
|
|
2192
|
+
}
|
|
2193
|
+
}
|
|
2096
2194
|
static get EmailIsNotValid() {
|
|
2097
2195
|
switch (this._cultureID) {
|
|
2098
2196
|
case CultureIDs.De_DE: return "Dies ist keine gültige e-mail Adresse";
|
|
@@ -2299,6 +2397,16 @@ export class SDKUI_Localizator {
|
|
|
2299
2397
|
default: return "Valuta il risultato";
|
|
2300
2398
|
}
|
|
2301
2399
|
}
|
|
2400
|
+
static get Expected() {
|
|
2401
|
+
switch (this._cultureID) {
|
|
2402
|
+
case CultureIDs.De_DE: return "Erwartet";
|
|
2403
|
+
case CultureIDs.En_US: return "Expected";
|
|
2404
|
+
case CultureIDs.Es_ES: return "Esperado";
|
|
2405
|
+
case CultureIDs.Fr_FR: return "Attendu";
|
|
2406
|
+
case CultureIDs.Pt_PT: return "Esperado";
|
|
2407
|
+
default: return "Atteso";
|
|
2408
|
+
}
|
|
2409
|
+
}
|
|
2302
2410
|
static get Expiration() {
|
|
2303
2411
|
switch (this._cultureID) {
|
|
2304
2412
|
case CultureIDs.De_DE: return "Ablaufdatum";
|
|
@@ -2339,6 +2447,26 @@ export class SDKUI_Localizator {
|
|
|
2339
2447
|
default: return "Esporta";
|
|
2340
2448
|
}
|
|
2341
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
|
+
}
|
|
2342
2470
|
static get ExportTo() {
|
|
2343
2471
|
switch (this._cultureID) {
|
|
2344
2472
|
case CultureIDs.De_DE: return "Exportieren nach...";
|
|
@@ -3358,6 +3486,16 @@ export class SDKUI_Localizator {
|
|
|
3358
3486
|
default: return "Esci";
|
|
3359
3487
|
}
|
|
3360
3488
|
}
|
|
3489
|
+
static get LogScreenFolder() {
|
|
3490
|
+
switch (this._cultureID) {
|
|
3491
|
+
case CultureIDs.De_DE: return "Ordner für Screenshot-Protokolle";
|
|
3492
|
+
case CultureIDs.En_US: return "Log screenshot folder";
|
|
3493
|
+
case CultureIDs.Es_ES: return "Carpeta de registro de capturas de pantalla";
|
|
3494
|
+
case CultureIDs.Fr_FR: return "Dossier de journal des captures d'écran";
|
|
3495
|
+
case CultureIDs.Pt_PT: return "Pasta de log de capturas de tela";
|
|
3496
|
+
default: return "Cartella di log screenshot";
|
|
3497
|
+
}
|
|
3498
|
+
}
|
|
3361
3499
|
static get Low() {
|
|
3362
3500
|
switch (this._cultureID) {
|
|
3363
3501
|
case CultureIDs.De_DE: return "Niedrig";
|
|
@@ -3378,6 +3516,16 @@ export class SDKUI_Localizator {
|
|
|
3378
3516
|
default: return "Rendi editabile";
|
|
3379
3517
|
}
|
|
3380
3518
|
}
|
|
3519
|
+
static get ManageFromTaskPanel() {
|
|
3520
|
+
switch (this._cultureID) {
|
|
3521
|
+
case CultureIDs.De_DE: return "Verwalten Sie im Aufgabenfenster";
|
|
3522
|
+
case CultureIDs.En_US: return "Manage from task panel";
|
|
3523
|
+
case CultureIDs.Es_ES: return "Gestionar desde el panel de tareas";
|
|
3524
|
+
case CultureIDs.Fr_FR: return "Gérer depuis le panneau des tâches";
|
|
3525
|
+
case CultureIDs.Pt_PT: return "Gerir a partir do painel de tarefas";
|
|
3526
|
+
default: return "Gestisci dal pannello attività";
|
|
3527
|
+
}
|
|
3528
|
+
}
|
|
3381
3529
|
static get Mark() {
|
|
3382
3530
|
switch (this._cultureID) {
|
|
3383
3531
|
case CultureIDs.De_DE: return "Markierung";
|
|
@@ -4180,6 +4328,16 @@ export class SDKUI_Localizator {
|
|
|
4180
4328
|
default: return "Non disponibile";
|
|
4181
4329
|
}
|
|
4182
4330
|
}
|
|
4331
|
+
static get MaximumNumberOfResults() {
|
|
4332
|
+
switch (this._cultureID) {
|
|
4333
|
+
case CultureIDs.De_DE: return "Maximale Anzahl von Ergebnissen";
|
|
4334
|
+
case CultureIDs.En_US: return "Maximum number of results";
|
|
4335
|
+
case CultureIDs.Es_ES: return "Número máximo de resultados";
|
|
4336
|
+
case CultureIDs.Fr_FR: return "Nombre maximum de résultats";
|
|
4337
|
+
case CultureIDs.Pt_PT: return "Número máximo de resultados";
|
|
4338
|
+
default: return "Numero massimo di risultati";
|
|
4339
|
+
}
|
|
4340
|
+
}
|
|
4183
4341
|
static get OfSystem() {
|
|
4184
4342
|
switch (this._cultureID) {
|
|
4185
4343
|
case CultureIDs.De_DE: return "Des Systems";
|
|
@@ -4790,6 +4948,32 @@ export class SDKUI_Localizator {
|
|
|
4790
4948
|
default: return "Rinviata";
|
|
4791
4949
|
}
|
|
4792
4950
|
}
|
|
4951
|
+
static get PotentiallyUnsafeContent() {
|
|
4952
|
+
switch (this._cultureID) {
|
|
4953
|
+
case CultureIDs.De_DE: return "Potenziell unsichere Inhalte";
|
|
4954
|
+
case CultureIDs.En_US: return "Potentially Unsafe Content";
|
|
4955
|
+
case CultureIDs.Es_ES: return "Contenido potencialmente no seguro";
|
|
4956
|
+
case CultureIDs.Fr_FR: return "Contenu potentiellement non sécurisé";
|
|
4957
|
+
case CultureIDs.Pt_PT: return "Conteúdo potencialmente não seguro";
|
|
4958
|
+
default: return "Contenuti potenzialmente non sicuri";
|
|
4959
|
+
}
|
|
4960
|
+
}
|
|
4961
|
+
static get PotentiallyUnsafeCodePatternsDetected() {
|
|
4962
|
+
switch (this._cultureID) {
|
|
4963
|
+
case CultureIDs.De_DE:
|
|
4964
|
+
return "{{0}} potenziell unsicheres Code-Muster in diesem Dokument erkannt.";
|
|
4965
|
+
case CultureIDs.En_US:
|
|
4966
|
+
return "{{0}} potentially unsafe code pattern detected in this document.";
|
|
4967
|
+
case CultureIDs.Es_ES:
|
|
4968
|
+
return "Se han detectado {{0}} patrones de código potencialmente no seguro en este documento.";
|
|
4969
|
+
case CultureIDs.Fr_FR:
|
|
4970
|
+
return "{{0}} motifs de code potentiellement non sécurisé détectés dans ce document.";
|
|
4971
|
+
case CultureIDs.Pt_PT:
|
|
4972
|
+
return "{{0}} padrões de código potencialmente não seguro detectados neste documento.";
|
|
4973
|
+
default:
|
|
4974
|
+
return "Sono stati rilevati {{0}} pattern di codice potenzialmente non sicuro in questo documento.";
|
|
4975
|
+
}
|
|
4976
|
+
}
|
|
4793
4977
|
static get PreparingFileForArchive() {
|
|
4794
4978
|
switch (this._cultureID) {
|
|
4795
4979
|
case CultureIDs.De_DE: return "Datei für Archivierung vorbereiten...";
|
|
@@ -4870,6 +5054,16 @@ export class SDKUI_Localizator {
|
|
|
4870
5054
|
default: return "Legenda delle priorità";
|
|
4871
5055
|
}
|
|
4872
5056
|
}
|
|
5057
|
+
static get ProceedAnyway() {
|
|
5058
|
+
switch (this._cultureID) {
|
|
5059
|
+
case CultureIDs.De_DE: return "Dennoch fortfahren?";
|
|
5060
|
+
case CultureIDs.En_US: return "Proceed anyway?";
|
|
5061
|
+
case CultureIDs.Es_ES: return "¿Proceder de todos modos?";
|
|
5062
|
+
case CultureIDs.Fr_FR: return "Procéder quand même ?";
|
|
5063
|
+
case CultureIDs.Pt_PT: return "Prosseguir mesmo assim?";
|
|
5064
|
+
default: return "Procedere comunque?";
|
|
5065
|
+
}
|
|
5066
|
+
}
|
|
4873
5067
|
static get ProcessedItems() {
|
|
4874
5068
|
switch (this._cultureID) {
|
|
4875
5069
|
case CultureIDs.De_DE: return "Durchdachte Elemente";
|
|
@@ -5177,6 +5371,16 @@ export class SDKUI_Localizator {
|
|
|
5177
5371
|
default: return "Richiedi a";
|
|
5178
5372
|
}
|
|
5179
5373
|
}
|
|
5374
|
+
static get SearchType() {
|
|
5375
|
+
switch (this._cultureID) {
|
|
5376
|
+
case CultureIDs.De_DE: return "Suchtyp";
|
|
5377
|
+
case CultureIDs.En_US: return "Search type";
|
|
5378
|
+
case CultureIDs.Es_ES: return "Tipo de búsqueda";
|
|
5379
|
+
case CultureIDs.Fr_FR: return "Type de recherche";
|
|
5380
|
+
case CultureIDs.Pt_PT: return "Tipo de pesquisa";
|
|
5381
|
+
default: return "Tipo di ricerca";
|
|
5382
|
+
}
|
|
5383
|
+
}
|
|
5180
5384
|
static get Required() {
|
|
5181
5385
|
switch (this._cultureID) {
|
|
5182
5386
|
case CultureIDs.De_DE: return "Obligatorisch";
|
|
@@ -5337,6 +5541,16 @@ export class SDKUI_Localizator {
|
|
|
5337
5541
|
default: return "Dettagli del risultato";
|
|
5338
5542
|
}
|
|
5339
5543
|
}
|
|
5544
|
+
static get ResultsPerPage() {
|
|
5545
|
+
switch (this._cultureID) {
|
|
5546
|
+
case CultureIDs.De_DE: return "Ergebnisse pro Seite";
|
|
5547
|
+
case CultureIDs.En_US: return "Results per page";
|
|
5548
|
+
case CultureIDs.Es_ES: return "Resultados por página";
|
|
5549
|
+
case CultureIDs.Fr_FR: return "Résultats par page";
|
|
5550
|
+
case CultureIDs.Pt_PT: return "Resultados por página";
|
|
5551
|
+
default: return "Risultati per pagina";
|
|
5552
|
+
}
|
|
5553
|
+
}
|
|
5340
5554
|
static get RetrieveFile() {
|
|
5341
5555
|
switch (this._cultureID) {
|
|
5342
5556
|
case CultureIDs.De_DE: return "Dateiwiederherstellung";
|
|
@@ -5698,6 +5912,16 @@ export class SDKUI_Localizator {
|
|
|
5698
5912
|
default: return "Impostazioni";
|
|
5699
5913
|
}
|
|
5700
5914
|
}
|
|
5915
|
+
static get SettingSavedSuccessfully() {
|
|
5916
|
+
switch (this._cultureID) {
|
|
5917
|
+
case CultureIDs.De_DE: return "Einstellung erfolgreich gespeichert";
|
|
5918
|
+
case CultureIDs.En_US: return "Setting saved successfully";
|
|
5919
|
+
case CultureIDs.Es_ES: return "Configuración guardada con éxito";
|
|
5920
|
+
case CultureIDs.Fr_FR: return "Paramètre enregistré avec succès";
|
|
5921
|
+
case CultureIDs.Pt_PT: return "Configuração salva com sucesso";
|
|
5922
|
+
default: return "Impostazione salvata con successo";
|
|
5923
|
+
}
|
|
5924
|
+
}
|
|
5701
5925
|
static get Severity() {
|
|
5702
5926
|
switch (this._cultureID) {
|
|
5703
5927
|
case CultureIDs.De_DE: return "Schweregrad";
|
|
@@ -5798,6 +6022,16 @@ export class SDKUI_Localizator {
|
|
|
5798
6022
|
default: return "Mostra tutti";
|
|
5799
6023
|
}
|
|
5800
6024
|
}
|
|
6025
|
+
static get ShowColumnSelection() {
|
|
6026
|
+
switch (this._cultureID) {
|
|
6027
|
+
case CultureIDs.De_DE: return "Spaltenauswahl anzeigen";
|
|
6028
|
+
case CultureIDs.En_US: return "Show column selection";
|
|
6029
|
+
case CultureIDs.Es_ES: return "Mostrar selección de columnas";
|
|
6030
|
+
case CultureIDs.Fr_FR: return "Afficher la sélection de colonnes";
|
|
6031
|
+
case CultureIDs.Pt_PT: return "Mostrar seleção de colunas";
|
|
6032
|
+
default: return "Mostra selezione colonne";
|
|
6033
|
+
}
|
|
6034
|
+
}
|
|
5801
6035
|
static get ShowFloatingBar() {
|
|
5802
6036
|
switch (this._cultureID) {
|
|
5803
6037
|
case CultureIDs.De_DE: return "Floating-Leiste anzeigen";
|
|
@@ -6128,6 +6362,16 @@ export class SDKUI_Localizator {
|
|
|
6128
6362
|
default: return "Oggetto";
|
|
6129
6363
|
}
|
|
6130
6364
|
}
|
|
6365
|
+
static get SubjectType() {
|
|
6366
|
+
switch (this._cultureID) {
|
|
6367
|
+
case CultureIDs.De_DE: return "Betreff-Typ";
|
|
6368
|
+
case CultureIDs.En_US: return "Subject type";
|
|
6369
|
+
case CultureIDs.Es_ES: return "Tipo de asunto";
|
|
6370
|
+
case CultureIDs.Fr_FR: return "Type de sujet";
|
|
6371
|
+
case CultureIDs.Pt_PT: return "Tipo de assunto";
|
|
6372
|
+
default: return "Tipo soggetto";
|
|
6373
|
+
}
|
|
6374
|
+
}
|
|
6131
6375
|
static get Summary() {
|
|
6132
6376
|
switch (this._cultureID) {
|
|
6133
6377
|
case CultureIDs.De_DE: return "Zusammenfassung";
|
|
@@ -6148,6 +6392,16 @@ export class SDKUI_Localizator {
|
|
|
6148
6392
|
default: return "Cambia utente";
|
|
6149
6393
|
}
|
|
6150
6394
|
}
|
|
6395
|
+
static get TargetedSearch() {
|
|
6396
|
+
switch (this._cultureID) {
|
|
6397
|
+
case CultureIDs.De_DE: return "Gezielte Suche";
|
|
6398
|
+
case CultureIDs.En_US: return "Targeted search";
|
|
6399
|
+
case CultureIDs.Es_ES: return "Búsqueda dirigida";
|
|
6400
|
+
case CultureIDs.Fr_FR: return "Recherche ciblée";
|
|
6401
|
+
case CultureIDs.Pt_PT: return "Pesquisa direcionada";
|
|
6402
|
+
default: return "Ricerca puntuale";
|
|
6403
|
+
}
|
|
6404
|
+
}
|
|
6151
6405
|
static get TaskAssignedMessage() {
|
|
6152
6406
|
switch (this._cultureID) {
|
|
6153
6407
|
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: _jsx("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 };
|