@topconsultnpm/sdkui-react 6.19.0-dev2.1 → 6.19.0-dev2.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/components/base/TMDataGridExportForm.d.ts +1 -1
- package/lib/components/base/TMFileManager.js +1 -1
- package/lib/components/base/TMTooltip.d.ts +1 -1
- package/lib/components/base/TMTooltip.js +1 -1
- package/lib/components/editors/TMDateBox.d.ts +1 -1
- package/lib/components/features/documents/TMDcmtForm.js +35 -35
- package/lib/components/features/documents/TMRelationViewer.js +1 -1
- package/lib/components/features/search/TMSavedQuerySelector.js +1 -1
- package/lib/components/features/search/TMSearchResult.js +62 -6
- package/lib/components/features/search/TMSearchResultsMenuItems.d.ts +1 -1
- package/lib/components/features/search/TMSearchResultsMenuItems.js +69 -51
- package/lib/components/features/tasks/TMTaskForm.js +1 -1
- package/lib/components/features/tasks/TMTasksAgenda.js +3 -3
- package/lib/components/features/tasks/TMTasksCalendar.js +1 -1
- package/lib/components/features/tasks/TMTasksHeader.js +1 -1
- package/lib/components/features/tasks/TMTasksUtils.d.ts +1 -1
- package/lib/components/features/tasks/TMTasksUtils.js +1 -1
- package/lib/components/features/tasks/TMTasksView.js +1 -1
- package/lib/components/features/workflow/TMWorkflowPopup.js +1 -1
- package/lib/components/features/workflow/diagram/DiagramItemForm.js +11 -6
- package/lib/components/features/workflow/diagram/RecipientList.js +1 -1
- package/lib/components/features/workflow/diagram/WFDiagram.js +20 -6
- package/lib/components/forms/TMResultDialog.js +8 -2
- package/lib/components/grids/TMBlogsPostUtils.js +1 -1
- package/lib/components/grids/TMRecentsManager.js +1 -1
- package/lib/components/pages/TMPage.js +1 -1
- package/lib/components/query/TMQuerySummary.d.ts +1 -0
- package/lib/components/query/TMQuerySummary.js +3 -3
- package/lib/components/settings/SettingsAppearance.js +9 -1
- package/lib/components/viewers/TMDataListItemViewer.d.ts +1 -1
- package/lib/components/viewers/TMMidViewer.d.ts +1 -1
- package/lib/components/viewers/TMTidViewer.d.ts +1 -1
- package/lib/helper/SDKUI_Globals.d.ts +2 -0
- package/lib/helper/SDKUI_Globals.js +9 -1
- package/lib/helper/SDKUI_Localizator.d.ts +34 -1
- package/lib/helper/SDKUI_Localizator.js +342 -12
- package/lib/helper/TMCustomSearchBar.js +1 -1
- package/lib/helper/TMIcons.d.ts +1 -0
- package/lib/helper/TMIcons.js +3 -0
- package/lib/hooks/useRelatedDocuments.js +24 -24
- package/lib/ts/types.d.ts +1 -1
- package/package.json +2 -2
|
@@ -434,6 +434,26 @@ export class SDKUI_Localizator {
|
|
|
434
434
|
default: return "Archivio documentale";
|
|
435
435
|
}
|
|
436
436
|
}
|
|
437
|
+
static get ArchiveDetailDocument() {
|
|
438
|
+
switch (this._cultureID) {
|
|
439
|
+
case CultureIDs.De_DE: return "Detaildokument archivieren";
|
|
440
|
+
case CultureIDs.En_US: return "Archive detail document";
|
|
441
|
+
case CultureIDs.Es_ES: return "Archivar documento de detalle";
|
|
442
|
+
case CultureIDs.Fr_FR: return "Archiver le document détail";
|
|
443
|
+
case CultureIDs.Pt_PT: return "Arquivar documento de detalhe";
|
|
444
|
+
default: return "Archivia documento dettaglio";
|
|
445
|
+
}
|
|
446
|
+
}
|
|
447
|
+
static get ArchiveMasterDocument() {
|
|
448
|
+
switch (this._cultureID) {
|
|
449
|
+
case CultureIDs.De_DE: return "Master-Dokument archivieren";
|
|
450
|
+
case CultureIDs.En_US: return "Archive master document";
|
|
451
|
+
case CultureIDs.Es_ES: return "Archivar documento maestro";
|
|
452
|
+
case CultureIDs.Fr_FR: return "Archiver le document maître";
|
|
453
|
+
case CultureIDs.Pt_PT: return "Arquivar documento mestre";
|
|
454
|
+
default: return "Archivia documento master";
|
|
455
|
+
}
|
|
456
|
+
}
|
|
437
457
|
static get Arguments() {
|
|
438
458
|
switch (this._cultureID) {
|
|
439
459
|
case CultureIDs.De_DE: return "Themen";
|
|
@@ -695,6 +715,16 @@ export class SDKUI_Localizator {
|
|
|
695
715
|
default: return "Calendario";
|
|
696
716
|
}
|
|
697
717
|
}
|
|
718
|
+
static get CancelCheckOut() {
|
|
719
|
+
switch (this._cultureID) {
|
|
720
|
+
case CultureIDs.De_DE: return "Check-out abbrechen";
|
|
721
|
+
case CultureIDs.En_US: return "Cancel Check Out";
|
|
722
|
+
case CultureIDs.Es_ES: return "Cancelar check-out";
|
|
723
|
+
case CultureIDs.Fr_FR: return "Annuler le check-out";
|
|
724
|
+
case CultureIDs.Pt_PT: return "Cancelar check-out";
|
|
725
|
+
default: return "Annulla Check out";
|
|
726
|
+
}
|
|
727
|
+
}
|
|
698
728
|
static get CassettoDoganaleExportMRN() {
|
|
699
729
|
switch (this._cultureID) {
|
|
700
730
|
case CultureIDs.De_DE: return "MRN-Erholung für den Export";
|
|
@@ -1583,10 +1613,10 @@ export class SDKUI_Localizator {
|
|
|
1583
1613
|
return `${this.WorkGroup} - ${this.AddParticipants}`;
|
|
1584
1614
|
}
|
|
1585
1615
|
static get DiagramItemTypes_CaseFlow_Create() {
|
|
1586
|
-
return `${this.
|
|
1616
|
+
return `${this.Dossier} - ${this.Create}`;
|
|
1587
1617
|
}
|
|
1588
1618
|
static get DiagramItemTypes_CaseFlow_AddParts() {
|
|
1589
|
-
return `${this.
|
|
1619
|
+
return `${this.Dossier} - ${this.AddParticipants}`;
|
|
1590
1620
|
}
|
|
1591
1621
|
static get DiagramItemTypes_Exit() {
|
|
1592
1622
|
switch (this._cultureID) {
|
|
@@ -1728,6 +1758,26 @@ export class SDKUI_Localizator {
|
|
|
1728
1758
|
default: return "Dominio";
|
|
1729
1759
|
}
|
|
1730
1760
|
}
|
|
1761
|
+
static get Dossier() {
|
|
1762
|
+
switch (this._cultureID) {
|
|
1763
|
+
case CultureIDs.De_DE: return "Übung";
|
|
1764
|
+
case CultureIDs.En_US: return "Dossier";
|
|
1765
|
+
case CultureIDs.Es_ES: return "Expediente";
|
|
1766
|
+
case CultureIDs.Fr_FR: return "Pratique";
|
|
1767
|
+
case CultureIDs.Pt_PT: return "Prática";
|
|
1768
|
+
default: return "Pratica";
|
|
1769
|
+
}
|
|
1770
|
+
}
|
|
1771
|
+
static get Dossiers() {
|
|
1772
|
+
switch (this._cultureID) {
|
|
1773
|
+
case CultureIDs.De_DE: return "Akten";
|
|
1774
|
+
case CultureIDs.En_US: return "Dossiers";
|
|
1775
|
+
case CultureIDs.Es_ES: return "Expedientes";
|
|
1776
|
+
case CultureIDs.Fr_FR: return "Pratiques";
|
|
1777
|
+
case CultureIDs.Pt_PT: return "Práticas";
|
|
1778
|
+
default: return "Pratiche";
|
|
1779
|
+
}
|
|
1780
|
+
}
|
|
1731
1781
|
static get DownloadFile() {
|
|
1732
1782
|
switch (this._cultureID) {
|
|
1733
1783
|
case CultureIDs.De_DE: return "Datei herunterladen";
|
|
@@ -2040,6 +2090,26 @@ export class SDKUI_Localizator {
|
|
|
2040
2090
|
default: return "Errore nelle date (1)";
|
|
2041
2091
|
}
|
|
2042
2092
|
}
|
|
2093
|
+
static get ExecuteCancelCheckOutQuestion() {
|
|
2094
|
+
switch (this._cultureID) {
|
|
2095
|
+
case CultureIDs.De_DE: return "Check-out abbrechen?";
|
|
2096
|
+
case CultureIDs.En_US: return "Cancel Check Out?";
|
|
2097
|
+
case CultureIDs.Es_ES: return "¿Cancelar el check-out?";
|
|
2098
|
+
case CultureIDs.Fr_FR: return "Annuler le check-out ?";
|
|
2099
|
+
case CultureIDs.Pt_PT: return "Cancelar o check-out?";
|
|
2100
|
+
default: return "Annullare il Check out?";
|
|
2101
|
+
}
|
|
2102
|
+
}
|
|
2103
|
+
static get ExecuteCheckOutQuestion() {
|
|
2104
|
+
switch (this._cultureID) {
|
|
2105
|
+
case CultureIDs.De_DE: return "Check-out durchführen?";
|
|
2106
|
+
case CultureIDs.En_US: return "Perform Check Out?";
|
|
2107
|
+
case CultureIDs.Es_ES: return "¿Realizar el check-out?";
|
|
2108
|
+
case CultureIDs.Fr_FR: return "Effectuer le check-out ?";
|
|
2109
|
+
case CultureIDs.Pt_PT: return "Executar o check-out?";
|
|
2110
|
+
default: return "Eseguire il Check out?";
|
|
2111
|
+
}
|
|
2112
|
+
}
|
|
2043
2113
|
static get ExportDataListsDescriptionField() {
|
|
2044
2114
|
switch (this._cultureID) {
|
|
2045
2115
|
case CultureIDs.De_DE: return 'Exportiere die "Beschreibung"-Felder der Datenlisten';
|
|
@@ -3139,6 +3209,26 @@ export class SDKUI_Localizator {
|
|
|
3139
3209
|
default: return "Segna come";
|
|
3140
3210
|
}
|
|
3141
3211
|
}
|
|
3212
|
+
static get Match() {
|
|
3213
|
+
switch (this._cultureID) {
|
|
3214
|
+
case CultureIDs.De_DE: return "Übereinstimmen";
|
|
3215
|
+
case CultureIDs.En_US: return "Match";
|
|
3216
|
+
case CultureIDs.Es_ES: return "Emparejar";
|
|
3217
|
+
case CultureIDs.Fr_FR: return "Associer";
|
|
3218
|
+
case CultureIDs.Pt_PT: return "Corresponder";
|
|
3219
|
+
default: return "Abbina";
|
|
3220
|
+
}
|
|
3221
|
+
}
|
|
3222
|
+
static get MatchManyDocumentsManyToMany() {
|
|
3223
|
+
switch (this._cultureID) {
|
|
3224
|
+
case CultureIDs.De_DE: return "Mehrere Dokumente mehrfach zuordnen";
|
|
3225
|
+
case CultureIDs.En_US: return "Match many documents many to many";
|
|
3226
|
+
case CultureIDs.Es_ES: return "Emparejar muchos documentos de muchos a muchos";
|
|
3227
|
+
case CultureIDs.Fr_FR: return "Associer plusieurs documents plusieurs à plusieurs";
|
|
3228
|
+
case CultureIDs.Pt_PT: return "Corresponder muitos documentos de muitos para muitos";
|
|
3229
|
+
default: return "Abbina documenti molti a molti";
|
|
3230
|
+
}
|
|
3231
|
+
}
|
|
3142
3232
|
static get Max_Value() {
|
|
3143
3233
|
switch (this._cultureID) {
|
|
3144
3234
|
case CultureIDs.De_DE: return "Der Maximalwert ist {{0}}";
|
|
@@ -3691,6 +3781,146 @@ export class SDKUI_Localizator {
|
|
|
3691
3781
|
default: return "Nessun documento selezionato";
|
|
3692
3782
|
}
|
|
3693
3783
|
}
|
|
3784
|
+
static get NoDetailDocumentFoundForArchiving() {
|
|
3785
|
+
switch (this._cultureID) {
|
|
3786
|
+
case CultureIDs.De_DE: return "Kein Detaildokument zur Archivierung gefunden.";
|
|
3787
|
+
case CultureIDs.En_US: return "No detail document found for archiving.";
|
|
3788
|
+
case CultureIDs.Es_ES: return "No se encontró ningún documento de detalle para archivar.";
|
|
3789
|
+
case CultureIDs.Fr_FR: return "Aucun document détail trouvé pour l'archivage.";
|
|
3790
|
+
case CultureIDs.Pt_PT: return "Nenhum documento de detalhe encontrado para arquivamento.";
|
|
3791
|
+
default: return "Nessun documento di dettaglio trovato per l'archiviazione.";
|
|
3792
|
+
}
|
|
3793
|
+
}
|
|
3794
|
+
static get NoDocumentMatchFound() {
|
|
3795
|
+
switch (this._cultureID) {
|
|
3796
|
+
case CultureIDs.De_DE: return "Kein zugeordnetes Dokument gefunden.";
|
|
3797
|
+
case CultureIDs.En_US: return "No document match found.";
|
|
3798
|
+
case CultureIDs.Es_ES: return "No se encontró ningún documento emparejado.";
|
|
3799
|
+
case CultureIDs.Fr_FR: return "Aucun document associé trouvé.";
|
|
3800
|
+
case CultureIDs.Pt_PT: return "Nenhum documento correspondente encontrado.";
|
|
3801
|
+
default: return "Nessun documento abbinato trovato.";
|
|
3802
|
+
}
|
|
3803
|
+
}
|
|
3804
|
+
static get NoDocumentSelectedForManyToManyMatching() {
|
|
3805
|
+
switch (this._cultureID) {
|
|
3806
|
+
case CultureIDs.De_DE: return "Kein Dokument für die Mehrfach-Zuordnung ausgewählt.";
|
|
3807
|
+
case CultureIDs.En_US: return "No document selected for many-to-many matching.";
|
|
3808
|
+
case CultureIDs.Es_ES: return "Ningún documento seleccionado para el emparejamiento de muchos a muchos.";
|
|
3809
|
+
case CultureIDs.Fr_FR: return "Aucun document sélectionné pour l'association plusieurs à plusieurs.";
|
|
3810
|
+
case CultureIDs.Pt_PT: return "Nenhum documento selecionado para correspondência de muitos para muitos.";
|
|
3811
|
+
default: return "Nessun documento selezionato per l'abbinamento molti a molti.";
|
|
3812
|
+
}
|
|
3813
|
+
}
|
|
3814
|
+
static get NoDocumentSelectedForManyToManyUnmatching() {
|
|
3815
|
+
switch (this._cultureID) {
|
|
3816
|
+
case CultureIDs.De_DE: return "Kein Dokument für die Aufhebung der Mehrfach-Zuordnung ausgewählt.";
|
|
3817
|
+
case CultureIDs.En_US: return "No document selected for many-to-many unmatching.";
|
|
3818
|
+
case CultureIDs.Es_ES: return "Ningún documento seleccionado para el desemparejamiento de muchos a muchos.";
|
|
3819
|
+
case CultureIDs.Fr_FR: return "Aucun document sélectionné pour la dissociation plusieurs à plusieurs.";
|
|
3820
|
+
case CultureIDs.Pt_PT: return "Nenhum documento selecionado para descorrespondência de muitos para muitos.";
|
|
3821
|
+
default: return "Nessun documento selezionato per il disabbinamento molti a molti.";
|
|
3822
|
+
}
|
|
3823
|
+
}
|
|
3824
|
+
static get NoDocumentToMatch() {
|
|
3825
|
+
switch (this._cultureID) {
|
|
3826
|
+
case CultureIDs.De_DE: return "Kein Dokument zuzuordnen. Alle resultierenden Dokumente sind bereits zugeordnet.";
|
|
3827
|
+
case CultureIDs.En_US: return "No document to match. All resulting documents are already matched.";
|
|
3828
|
+
case CultureIDs.Es_ES: return "Ningún documento para emparejar. Todos los documentos resultantes ya están emparejados.";
|
|
3829
|
+
case CultureIDs.Fr_FR: return "Aucun document à associer. Tous les documents résultants sont déjà associés.";
|
|
3830
|
+
case CultureIDs.Pt_PT: return "Nenhum documento para corresponder. Todos os documentos resultantes já estão correspondidos.";
|
|
3831
|
+
default: return "Nessun documento da abbinare. Tutti i documenti risultanti sono già abbinati.";
|
|
3832
|
+
}
|
|
3833
|
+
}
|
|
3834
|
+
static get NoManyToManyMatchingRelationshipAssociatedWithRetrievalQuery() {
|
|
3835
|
+
switch (this._cultureID) {
|
|
3836
|
+
case CultureIDs.De_DE: return "Keine Mehrfach-Zuordnungsbeziehung mit Abrufabfrage verknüpft.";
|
|
3837
|
+
case CultureIDs.En_US: return "No many-to-many matching relationship associated with retrieval query.";
|
|
3838
|
+
case CultureIDs.Es_ES: return "Ninguna relación de emparejamiento de muchos a muchos asociada con la consulta de recuperación.";
|
|
3839
|
+
case CultureIDs.Fr_FR: return "Aucune relation d'association plusieurs à plusieurs associée à la requête de récupération.";
|
|
3840
|
+
case CultureIDs.Pt_PT: return "Nenhuma relação de correspondência de muitos para muitos associada à consulta de recuperação.";
|
|
3841
|
+
default: return "Nessuna query di recupero associata alla relazione di abbinamento molti a molti.";
|
|
3842
|
+
}
|
|
3843
|
+
}
|
|
3844
|
+
static get NoManyToManyMatchingRelationshipDefined() {
|
|
3845
|
+
switch (this._cultureID) {
|
|
3846
|
+
case CultureIDs.De_DE: return "Keine Mehrfach-Zuordnungsbeziehung im System definiert.";
|
|
3847
|
+
case CultureIDs.En_US: return "No many-to-many matching relationship defined in the system.";
|
|
3848
|
+
case CultureIDs.Es_ES: return "Ninguna relación de emparejamiento de muchos a muchos definida en el sistema.";
|
|
3849
|
+
case CultureIDs.Fr_FR: return "Aucune relation d'association plusieurs à plusieurs définie dans le système.";
|
|
3850
|
+
case CultureIDs.Pt_PT: return "Nenhuma relação de correspondência de muitos para muitos definida no sistema.";
|
|
3851
|
+
default: return "Nessuna relazione di abbinamento molti a molti definita nel sistema.";
|
|
3852
|
+
}
|
|
3853
|
+
}
|
|
3854
|
+
static get NoManyToManyMatchingRelationshipDefinedForSelectedDocumentType() {
|
|
3855
|
+
switch (this._cultureID) {
|
|
3856
|
+
case CultureIDs.De_DE: return "Keine Mehrfach-Zuordnungsbeziehung für den ausgewählten Dokumenttyp definiert.";
|
|
3857
|
+
case CultureIDs.En_US: return "No many-to-many matching relationship defined for selected document type.";
|
|
3858
|
+
case CultureIDs.Es_ES: return "Ninguna relación de emparejamiento de muchos a muchos definida para el tipo de documento seleccionado.";
|
|
3859
|
+
case CultureIDs.Fr_FR: return "Aucune relation d'association plusieurs à plusieurs définie pour le type de document sélectionné.";
|
|
3860
|
+
case CultureIDs.Pt_PT: return "Nenhuma relação de correspondência de muitos para muitos definida para o tipo de documento selecionado.";
|
|
3861
|
+
default: return "Nessuna relazione di abbinamento molti a molti definita per il tipo di documento selezionato.";
|
|
3862
|
+
}
|
|
3863
|
+
}
|
|
3864
|
+
static get NoManyToManyUnmatchingRelationshipAssociatedWithRetrievalQuery() {
|
|
3865
|
+
switch (this._cultureID) {
|
|
3866
|
+
case CultureIDs.De_DE: return "Keine Beziehung zur Aufhebung der Mehrfach-Zuordnung mit Abrufabfrage verknüpft.";
|
|
3867
|
+
case CultureIDs.En_US: return "No many-to-many unmatching relationship associated with retrieval query.";
|
|
3868
|
+
case CultureIDs.Es_ES: return "Ninguna relación de desemparejamiento de muchos a muchos asociada con la consulta de recuperación.";
|
|
3869
|
+
case CultureIDs.Fr_FR: return "Aucune relation de dissociation plusieurs à plusieurs associée à la requête de récupération.";
|
|
3870
|
+
case CultureIDs.Pt_PT: return "Nenhuma relação de descorrespondência de muitos para muitos associada à consulta de recuperação.";
|
|
3871
|
+
default: return "Nessuna query di recupero associata alla relazione di disabbinamento molti a molti.";
|
|
3872
|
+
}
|
|
3873
|
+
}
|
|
3874
|
+
static get NoManyToManyUnmatchingRelationshipDefined() {
|
|
3875
|
+
switch (this._cultureID) {
|
|
3876
|
+
case CultureIDs.De_DE: return "Keine Beziehung zur Aufhebung der Mehrfach-Zuordnung im System definiert.";
|
|
3877
|
+
case CultureIDs.En_US: return "No many-to-many unmatching relationship defined in the system.";
|
|
3878
|
+
case CultureIDs.Es_ES: return "Ninguna relación de desemparejamiento de muchos a muchos definida en el sistema.";
|
|
3879
|
+
case CultureIDs.Fr_FR: return "Aucune relation de dissociation plusieurs à plusieurs définie dans le système.";
|
|
3880
|
+
case CultureIDs.Pt_PT: return "Nenhuma relação de descorrespondência de muitos para muitos definida no sistema.";
|
|
3881
|
+
default: return "Nessuna relazione di disabbinamento molti a molti definita nel sistema.";
|
|
3882
|
+
}
|
|
3883
|
+
}
|
|
3884
|
+
static get NoManyToManyUnmatchingRelationshipDefinedForSelectedDocumentType() {
|
|
3885
|
+
switch (this._cultureID) {
|
|
3886
|
+
case CultureIDs.De_DE: return "Keine Beziehung zur Aufhebung der Mehrfach-Zuordnung für den ausgewählten Dokumenttyp definiert.";
|
|
3887
|
+
case CultureIDs.En_US: return "No many-to-many unmatching relationship defined for selected document type.";
|
|
3888
|
+
case CultureIDs.Es_ES: return "Ninguna relación de desemparejamiento de muchos a muchos definida para el tipo de documento seleccionado.";
|
|
3889
|
+
case CultureIDs.Fr_FR: return "Aucune relation de dissociation plusieurs à plusieurs définie pour le type de document sélectionné.";
|
|
3890
|
+
case CultureIDs.Pt_PT: return "Nenhuma relação de descorrespondência de muitos para muitos definida para o tipo de documento selecionado.";
|
|
3891
|
+
default: return "Nessuna relazione di abbinamento molti a molti definita per il tipo di documento selezionato.";
|
|
3892
|
+
}
|
|
3893
|
+
}
|
|
3894
|
+
static get NoMasterDocumentFoundForArchiving() {
|
|
3895
|
+
switch (this._cultureID) {
|
|
3896
|
+
case CultureIDs.De_DE: return "Kein Master-Dokument zur Archivierung gefunden.";
|
|
3897
|
+
case CultureIDs.En_US: return "No master document found for archiving.";
|
|
3898
|
+
case CultureIDs.Es_ES: return "No se encontró ningún documento maestro para archivar.";
|
|
3899
|
+
case CultureIDs.Fr_FR: return "Aucun document maître trouvé pour l'archivage.";
|
|
3900
|
+
case CultureIDs.Pt_PT: return "Nenhum documento mestre encontrado para arquivamento.";
|
|
3901
|
+
default: return "Nessun documento di master trovato per l'archiviazione";
|
|
3902
|
+
}
|
|
3903
|
+
}
|
|
3904
|
+
static get NoMatchFoundForDetailDocuments() {
|
|
3905
|
+
switch (this._cultureID) {
|
|
3906
|
+
case CultureIDs.De_DE: return "Keine Zuordnung für Detaildokumente gefunden.";
|
|
3907
|
+
case CultureIDs.En_US: return "No match found for detail documents.";
|
|
3908
|
+
case CultureIDs.Es_ES: return "No se encontró ninguna correspondencia para los documentos de detalle.";
|
|
3909
|
+
case CultureIDs.Fr_FR: return "Aucune correspondance trouvée pour les documents détail.";
|
|
3910
|
+
case CultureIDs.Pt_PT: return "Nenhuma correspondência encontrada para documentos de detalhe.";
|
|
3911
|
+
default: return "Nessuna associazione trovata per i documenti di dettaglio";
|
|
3912
|
+
}
|
|
3913
|
+
}
|
|
3914
|
+
static get NoMatchFoundForMasterDocuments() {
|
|
3915
|
+
switch (this._cultureID) {
|
|
3916
|
+
case CultureIDs.De_DE: return "Keine Zuordnung für Master-Dokumente gefunden.";
|
|
3917
|
+
case CultureIDs.En_US: return "No match found for master documents.";
|
|
3918
|
+
case CultureIDs.Es_ES: return "No se encontró ninguna correspondencia para los documentos maestros.";
|
|
3919
|
+
case CultureIDs.Fr_FR: return "Aucune correspondance trouvée pour les documents maîtres.";
|
|
3920
|
+
case CultureIDs.Pt_PT: return "Nenhuma correspondência encontrada para documentos mestres.";
|
|
3921
|
+
default: return "Nessuna associazione trovata per i documenti di master";
|
|
3922
|
+
}
|
|
3923
|
+
}
|
|
3694
3924
|
static get NoMessages() {
|
|
3695
3925
|
switch (this._cultureID) {
|
|
3696
3926
|
case CultureIDs.De_DE: return "Keine Nachrichten vorhanden";
|
|
@@ -4371,16 +4601,6 @@ export class SDKUI_Localizator {
|
|
|
4371
4601
|
default: return "Rinviata";
|
|
4372
4602
|
}
|
|
4373
4603
|
}
|
|
4374
|
-
static get Practice() {
|
|
4375
|
-
switch (this._cultureID) {
|
|
4376
|
-
case CultureIDs.De_DE: return "Praxis";
|
|
4377
|
-
case CultureIDs.En_US: return "Practice";
|
|
4378
|
-
case CultureIDs.Es_ES: return "Práctica";
|
|
4379
|
-
case CultureIDs.Fr_FR: return "Pratique";
|
|
4380
|
-
case CultureIDs.Pt_PT: return "Prática";
|
|
4381
|
-
default: return "Pratica";
|
|
4382
|
-
}
|
|
4383
|
-
}
|
|
4384
4604
|
static get PreparingFileForArchive() {
|
|
4385
4605
|
switch (this._cultureID) {
|
|
4386
4606
|
case CultureIDs.De_DE: return "Datei für Archivierung vorbereiten...";
|
|
@@ -5349,6 +5569,26 @@ export class SDKUI_Localizator {
|
|
|
5349
5569
|
default: return "Condivisa";
|
|
5350
5570
|
}
|
|
5351
5571
|
}
|
|
5572
|
+
static get SharedArchiving() {
|
|
5573
|
+
switch (this._cultureID) {
|
|
5574
|
+
case CultureIDs.De_DE: return "Gemeinsame Archivierung";
|
|
5575
|
+
case CultureIDs.En_US: return "Shared archiving";
|
|
5576
|
+
case CultureIDs.Es_ES: return "Archivo compartido";
|
|
5577
|
+
case CultureIDs.Fr_FR: return "Archivage partagé";
|
|
5578
|
+
case CultureIDs.Pt_PT: return "Arquivamento compartilhado";
|
|
5579
|
+
default: return "Archiviazione condivisa";
|
|
5580
|
+
}
|
|
5581
|
+
}
|
|
5582
|
+
static get SharedDocuments() {
|
|
5583
|
+
switch (this._cultureID) {
|
|
5584
|
+
case CultureIDs.De_DE: return "Gemeinsame Dokumente";
|
|
5585
|
+
case CultureIDs.En_US: return "Shared documents";
|
|
5586
|
+
case CultureIDs.Es_ES: return "Documentos compartidos";
|
|
5587
|
+
case CultureIDs.Fr_FR: return "Documents partagés";
|
|
5588
|
+
case CultureIDs.Pt_PT: return "Documentos compartilhados";
|
|
5589
|
+
default: return "Documenti condivisi";
|
|
5590
|
+
}
|
|
5591
|
+
}
|
|
5352
5592
|
static get Shortcuts() {
|
|
5353
5593
|
switch (this._cultureID) {
|
|
5354
5594
|
case CultureIDs.De_DE: return "Tastenkombinationen";
|
|
@@ -5459,6 +5699,16 @@ export class SDKUI_Localizator {
|
|
|
5459
5699
|
default: return "Mostra ricerca";
|
|
5460
5700
|
}
|
|
5461
5701
|
}
|
|
5702
|
+
static get ShowSharedDocuments() {
|
|
5703
|
+
switch (this._cultureID) {
|
|
5704
|
+
case CultureIDs.De_DE: return "Gemeinsame Dokumente anzeigen";
|
|
5705
|
+
case CultureIDs.En_US: return "Show shared documents";
|
|
5706
|
+
case CultureIDs.Es_ES: return "Mostrar documentos compartidos";
|
|
5707
|
+
case CultureIDs.Fr_FR: return "Afficher les documents partagés";
|
|
5708
|
+
case CultureIDs.Pt_PT: return "Mostrar documentos compartilhados";
|
|
5709
|
+
default: return "Mostra documenti condivisi";
|
|
5710
|
+
}
|
|
5711
|
+
}
|
|
5462
5712
|
static get ShowColumnSeparatingLines() {
|
|
5463
5713
|
switch (this._cultureID) {
|
|
5464
5714
|
case CultureIDs.De_DE: return "Spalten-Trennungslinien anzeigen";
|
|
@@ -5979,6 +6229,26 @@ export class SDKUI_Localizator {
|
|
|
5979
6229
|
default: return "Non seguire più";
|
|
5980
6230
|
}
|
|
5981
6231
|
}
|
|
6232
|
+
static get Unmatch() {
|
|
6233
|
+
switch (this._cultureID) {
|
|
6234
|
+
case CultureIDs.De_DE: return "Zuordnung aufheben";
|
|
6235
|
+
case CultureIDs.En_US: return "Unmatch";
|
|
6236
|
+
case CultureIDs.Es_ES: return "Desemparejar";
|
|
6237
|
+
case CultureIDs.Fr_FR: return "Dissocier";
|
|
6238
|
+
case CultureIDs.Pt_PT: return "Descorresponder";
|
|
6239
|
+
default: return "Disabbina";
|
|
6240
|
+
}
|
|
6241
|
+
}
|
|
6242
|
+
static get UnmatchManyDocumentsManyToMany() {
|
|
6243
|
+
switch (this._cultureID) {
|
|
6244
|
+
case CultureIDs.De_DE: return "Mehrfache Zuordnung von vielen Dokumenten aufheben";
|
|
6245
|
+
case CultureIDs.En_US: return "Unmatch many documents many to many";
|
|
6246
|
+
case CultureIDs.Es_ES: return "Desemparejar muchos documentos de muchos a muchos";
|
|
6247
|
+
case CultureIDs.Fr_FR: return "Dissocier plusieurs documents plusieurs à plusieurs";
|
|
6248
|
+
case CultureIDs.Pt_PT: return "Descorresponder muitos documentos de muitos para muitos";
|
|
6249
|
+
default: return "Disabbina documenti molti a molti";
|
|
6250
|
+
}
|
|
6251
|
+
}
|
|
5982
6252
|
static get UnfollowSelectedItem() {
|
|
5983
6253
|
switch (this._cultureID) {
|
|
5984
6254
|
case CultureIDs.De_DE:
|
|
@@ -6415,6 +6685,26 @@ export class SDKUI_Localizator {
|
|
|
6415
6685
|
default: return "Aggiungere il documento alle bozze del gruppo di lavoro";
|
|
6416
6686
|
}
|
|
6417
6687
|
}
|
|
6688
|
+
static get WorkflowAddDcmtAsAttachment() {
|
|
6689
|
+
switch (this._cultureID) {
|
|
6690
|
+
case CultureIDs.De_DE: return "Dokument als Anhang zur Praxis hinzufügen";
|
|
6691
|
+
case CultureIDs.En_US: return "Add the document as an attachment to the case";
|
|
6692
|
+
case CultureIDs.Es_ES: return "Agregar el documento como adjunto al expediente";
|
|
6693
|
+
case CultureIDs.Fr_FR: return "Ajouter le document en tant que pièce jointe au dossier";
|
|
6694
|
+
case CultureIDs.Pt_PT: return "Adicionar o documento como anexo ao processo";
|
|
6695
|
+
default: return "Aggiungere il documento come allegato della pratica";
|
|
6696
|
+
}
|
|
6697
|
+
}
|
|
6698
|
+
static get WorkflowAddDcmtToDossier() {
|
|
6699
|
+
switch (this._cultureID) {
|
|
6700
|
+
case CultureIDs.De_DE: return "Dokument zur Praxis hinzufügen";
|
|
6701
|
+
case CultureIDs.En_US: return "Add the document to the case";
|
|
6702
|
+
case CultureIDs.Es_ES: return "Agregar el documento al expediente";
|
|
6703
|
+
case CultureIDs.Fr_FR: return "Ajouter le document au dossier";
|
|
6704
|
+
case CultureIDs.Pt_PT: return "Adicionar o documento ao processo";
|
|
6705
|
+
default: return "Aggiungere il documento alla pratica";
|
|
6706
|
+
}
|
|
6707
|
+
}
|
|
6418
6708
|
static get WorkflowAllowZeroTos() {
|
|
6419
6709
|
switch (this._cultureID) {
|
|
6420
6710
|
case CultureIDs.De_DE: return "0 Empfänger zulassen";
|
|
@@ -6475,6 +6765,26 @@ export class SDKUI_Localizator {
|
|
|
6475
6765
|
default: return "Connessione non valida: nodo sorgente o destinazione non trovato.";
|
|
6476
6766
|
}
|
|
6477
6767
|
}
|
|
6768
|
+
static get WorkflowRestoreDiagram() {
|
|
6769
|
+
switch (this._cultureID) {
|
|
6770
|
+
case CultureIDs.De_DE: return "Diagramm wiederherstellen";
|
|
6771
|
+
case CultureIDs.En_US: return "Restore diagram";
|
|
6772
|
+
case CultureIDs.Es_ES: return "Restaurar diagrama";
|
|
6773
|
+
case CultureIDs.Fr_FR: return "Restaurer le diagramme";
|
|
6774
|
+
case CultureIDs.Pt_PT: return "Restaurar diagrama";
|
|
6775
|
+
default: return "Ripristina diagramma";
|
|
6776
|
+
}
|
|
6777
|
+
}
|
|
6778
|
+
static get WorkflowRestoreDiagramMessage() {
|
|
6779
|
+
switch (this._cultureID) {
|
|
6780
|
+
case CultureIDs.De_DE: return "Möchten Sie das ursprüngliche Diagramm wiederherstellen? Alle nicht gespeicherten Änderungen gehen verloren.";
|
|
6781
|
+
case CultureIDs.En_US: return "Are you sure you want to restore the initial diagram? All unsaved changes will be lost.";
|
|
6782
|
+
case CultureIDs.Es_ES: return "¿Está seguro de que desea restaurar el diagrama inicial? Se perderán todos los cambios no guardados.";
|
|
6783
|
+
case CultureIDs.Fr_FR: return "Êtes-vous sûr de vouloir restaurer le diagramme initial ? Toutes les modifications non enregistrées seront perdues.";
|
|
6784
|
+
case CultureIDs.Pt_PT: return "Tem certeza de que deseja restaurar o diagrama inicial? Todas as alterações não salvas serão perdidas.";
|
|
6785
|
+
default: return "Sei sicuro di voler ripristinare il diagramma iniziale? Tutte le modifiche non salvate andranno perse.";
|
|
6786
|
+
}
|
|
6787
|
+
}
|
|
6478
6788
|
static get WorkflowDiagramCannotConnectToStart() {
|
|
6479
6789
|
switch (this._cultureID) {
|
|
6480
6790
|
case CultureIDs.De_DE: return "Non können Sie an einen 'Start'-Knoten verbinden.";
|
|
@@ -6925,6 +7235,26 @@ export class SDKUI_Localizator {
|
|
|
6925
7235
|
default: return "Scritto il";
|
|
6926
7236
|
}
|
|
6927
7237
|
}
|
|
7238
|
+
static get YouDoNotHavePermissionsToArchiveDetailDocumentsOfThisType() {
|
|
7239
|
+
switch (this._cultureID) {
|
|
7240
|
+
case CultureIDs.De_DE: return "Sie haben keine Berechtigung, Detaildokumente dieses Typs zu archivieren.";
|
|
7241
|
+
case CultureIDs.En_US: return "You do not have permissions to archive detail documents of this type.";
|
|
7242
|
+
case CultureIDs.Es_ES: return "No tienes permisos para archivar documentos de detalle de este tipo.";
|
|
7243
|
+
case CultureIDs.Fr_FR: return "Vous n'avez pas les permissions pour archiver les documents détail de ce type.";
|
|
7244
|
+
case CultureIDs.Pt_PT: return "Você não tem permissões para arquivar documentos de detalhe deste tipo.";
|
|
7245
|
+
default: return "Non hai i permessi per archiviare documenti di dettaglio di questo tipo.";
|
|
7246
|
+
}
|
|
7247
|
+
}
|
|
7248
|
+
static get YouDoNotHavePermissionsToArchiveMasterDocumentsOfThisType() {
|
|
7249
|
+
switch (this._cultureID) {
|
|
7250
|
+
case CultureIDs.De_DE: return "Sie haben keine Berechtigung, Master-Dokumente dieses Typs zu archivieren.";
|
|
7251
|
+
case CultureIDs.En_US: return "You do not have permissions to archive master documents of this type.";
|
|
7252
|
+
case CultureIDs.Es_ES: return "No tienes permisos para archivar documentos maestros de este tipo.";
|
|
7253
|
+
case CultureIDs.Fr_FR: return "Vous n'avez pas les permissions pour archiver les documents maîtres de ce type.";
|
|
7254
|
+
case CultureIDs.Pt_PT: return "Você não tem permissões para arquivar documentos mestres deste tipo.";
|
|
7255
|
+
default: return "Non hai i permessi per archiviare documenti master di questo tipo.";
|
|
7256
|
+
}
|
|
7257
|
+
}
|
|
6928
7258
|
static get Yes() {
|
|
6929
7259
|
switch (this._cultureID) {
|
|
6930
7260
|
case CultureIDs.De_DE: return "Ja";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import TextBox from 'devextreme-react/
|
|
2
|
+
import TextBox from 'devextreme-react/text-box';
|
|
3
3
|
import { useEffect, useState } from 'react';
|
|
4
4
|
import { SDKUI_Localizator } from './SDKUI_Localizator';
|
|
5
5
|
import { IconCloseOutline, IconSearch } from './TMIcons';
|
package/lib/helper/TMIcons.d.ts
CHANGED
|
@@ -270,4 +270,5 @@ export declare function IconArchiveMaster(props: React.SVGProps<SVGSVGElement>):
|
|
|
270
270
|
export declare function IconPair(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
|
|
271
271
|
export declare function IconUnpair(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
|
|
272
272
|
export declare function IconBackhandIndexPointingRight(props: Readonly<React.SVGProps<SVGSVGElement>>): import("react/jsx-runtime").JSX.Element;
|
|
273
|
+
export declare function IconMoveToFolder(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
|
|
273
274
|
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, };
|
package/lib/helper/TMIcons.js
CHANGED
|
@@ -667,4 +667,7 @@ export function IconUnpair(props) {
|
|
|
667
667
|
export function IconBackhandIndexPointingRight(props) {
|
|
668
668
|
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" }) })] }));
|
|
669
669
|
}
|
|
670
|
+
export function IconMoveToFolder(props) {
|
|
671
|
+
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" }) }));
|
|
672
|
+
}
|
|
670
673
|
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, };
|
|
@@ -222,8 +222,8 @@ export const useRelatedDocuments = ({ selectedSearchResult, focusedItem, current
|
|
|
222
222
|
const showNoRelationsAlert = (type) => {
|
|
223
223
|
ShowAlert({
|
|
224
224
|
message: type === 'detail'
|
|
225
|
-
?
|
|
226
|
-
:
|
|
225
|
+
? SDKUI_Localizator.NoDetailDocumentFoundForArchiving
|
|
226
|
+
: SDKUI_Localizator.NoMasterDocumentFoundForArchiving,
|
|
227
227
|
mode: 'info',
|
|
228
228
|
title: type === 'detail' ? SDKUI_Localizator.DcmtsDetail : SDKUI_Localizator.DcmtsMaster,
|
|
229
229
|
duration: 5000
|
|
@@ -232,8 +232,8 @@ export const useRelatedDocuments = ({ selectedSearchResult, focusedItem, current
|
|
|
232
232
|
const showNoAssociationsAlert = (type) => {
|
|
233
233
|
ShowAlert({
|
|
234
234
|
message: type === 'detail'
|
|
235
|
-
?
|
|
236
|
-
:
|
|
235
|
+
? SDKUI_Localizator.NoMatchFoundForDetailDocuments
|
|
236
|
+
: SDKUI_Localizator.NoMatchFoundForMasterDocuments,
|
|
237
237
|
mode: 'info',
|
|
238
238
|
title: type === 'detail' ? SDKUI_Localizator.DcmtsDetail : SDKUI_Localizator.DcmtsMaster,
|
|
239
239
|
duration: 5000
|
|
@@ -254,8 +254,8 @@ export const useRelatedDocuments = ({ selectedSearchResult, focusedItem, current
|
|
|
254
254
|
if (dtd?.perm?.canArchive !== AccessLevelsEx.Yes && dtd?.perm?.canArchive !== AccessLevelsEx.Mixed) {
|
|
255
255
|
ShowAlert({
|
|
256
256
|
message: type === 'detail'
|
|
257
|
-
?
|
|
258
|
-
:
|
|
257
|
+
? SDKUI_Localizator.YouDoNotHavePermissionsToArchiveDetailDocumentsOfThisType
|
|
258
|
+
: SDKUI_Localizator.YouDoNotHavePermissionsToArchiveMasterDocumentsOfThisType,
|
|
259
259
|
mode: 'warning',
|
|
260
260
|
title: type === 'detail' ? SDKUI_Localizator.DcmtsDetail : SDKUI_Localizator.DcmtsMaster,
|
|
261
261
|
duration: 5000
|
|
@@ -365,10 +365,10 @@ export const useRelatedDocuments = ({ selectedSearchResult, focusedItem, current
|
|
|
365
365
|
if (!focusedItem?.TID || !focusedItem?.DID) {
|
|
366
366
|
ShowAlert({
|
|
367
367
|
message: isPairing
|
|
368
|
-
?
|
|
369
|
-
:
|
|
368
|
+
? SDKUI_Localizator.NoDocumentSelectedForManyToManyMatching
|
|
369
|
+
: SDKUI_Localizator.NoDocumentSelectedForManyToManyUnmatching,
|
|
370
370
|
mode: 'warning',
|
|
371
|
-
title: isPairing ?
|
|
371
|
+
title: isPairing ? SDKUI_Localizator.MatchManyDocumentsManyToMany : SDKUI_Localizator.UnmatchManyDocumentsManyToMany,
|
|
372
372
|
duration: 5000
|
|
373
373
|
});
|
|
374
374
|
return;
|
|
@@ -384,10 +384,10 @@ export const useRelatedDocuments = ({ selectedSearchResult, focusedItem, current
|
|
|
384
384
|
if (!qd) {
|
|
385
385
|
ShowAlert({
|
|
386
386
|
message: isPairing
|
|
387
|
-
?
|
|
388
|
-
:
|
|
387
|
+
? SDKUI_Localizator.NoManyToManyMatchingRelationshipAssociatedWithRetrievalQuery
|
|
388
|
+
: SDKUI_Localizator.NoManyToManyUnmatchingRelationshipAssociatedWithRetrievalQuery,
|
|
389
389
|
mode: 'warning',
|
|
390
|
-
title: isPairing ?
|
|
390
|
+
title: isPairing ? SDKUI_Localizator.MatchManyDocumentsManyToMany : SDKUI_Localizator.UnmatchManyDocumentsManyToMany,
|
|
391
391
|
duration: 5000
|
|
392
392
|
});
|
|
393
393
|
return;
|
|
@@ -490,9 +490,9 @@ export const useRelatedDocuments = ({ selectedSearchResult, focusedItem, current
|
|
|
490
490
|
if (!isPairing) {
|
|
491
491
|
if (!pairedDocumentsResult?.dtdResult?.rows || pairedDocumentsResult.dtdResult.rows.length === 0) {
|
|
492
492
|
ShowAlert({
|
|
493
|
-
message:
|
|
493
|
+
message: SDKUI_Localizator.NoDocumentMatchFound,
|
|
494
494
|
mode: 'warning',
|
|
495
|
-
title:
|
|
495
|
+
title: SDKUI_Localizator.UnmatchManyDocumentsManyToMany,
|
|
496
496
|
duration: 5000
|
|
497
497
|
});
|
|
498
498
|
return;
|
|
@@ -514,9 +514,9 @@ export const useRelatedDocuments = ({ selectedSearchResult, focusedItem, current
|
|
|
514
514
|
const sq = await searchEngine.SearchByIDAsync(qd);
|
|
515
515
|
if (!sq?.dtdResult?.rows || sq.dtdResult.rows.length === 0) {
|
|
516
516
|
ShowAlert({
|
|
517
|
-
message:
|
|
517
|
+
message: SDKUI_Localizator.NoDcmtFound,
|
|
518
518
|
mode: 'warning',
|
|
519
|
-
title:
|
|
519
|
+
title: SDKUI_Localizator.MatchManyDocumentsManyToMany,
|
|
520
520
|
duration: 5000
|
|
521
521
|
});
|
|
522
522
|
openPairSearchModal(relation, targetTID, qd);
|
|
@@ -539,9 +539,9 @@ export const useRelatedDocuments = ({ selectedSearchResult, focusedItem, current
|
|
|
539
539
|
};
|
|
540
540
|
if (filteredRows.length === 0) {
|
|
541
541
|
ShowAlert({
|
|
542
|
-
message:
|
|
542
|
+
message: SDKUI_Localizator.NoDocumentToMatch,
|
|
543
543
|
mode: 'warning',
|
|
544
|
-
title:
|
|
544
|
+
title: SDKUI_Localizator.MatchManyDocumentsManyToMany,
|
|
545
545
|
duration: 5000
|
|
546
546
|
});
|
|
547
547
|
openPairSearchModal(relation, targetTID, qd);
|
|
@@ -560,10 +560,10 @@ export const useRelatedDocuments = ({ selectedSearchResult, focusedItem, current
|
|
|
560
560
|
if (!relations.some(r => r.relationType === RelationTypes.ManyToMany)) {
|
|
561
561
|
ShowAlert({
|
|
562
562
|
message: isPairing
|
|
563
|
-
?
|
|
564
|
-
:
|
|
563
|
+
? SDKUI_Localizator.NoManyToManyMatchingRelationshipDefined
|
|
564
|
+
: SDKUI_Localizator.NoManyToManyUnmatchingRelationshipDefined,
|
|
565
565
|
mode: 'warning',
|
|
566
|
-
title: isPairing ?
|
|
566
|
+
title: isPairing ? SDKUI_Localizator.MatchManyDocumentsManyToMany : SDKUI_Localizator.UnmatchManyDocumentsManyToMany,
|
|
567
567
|
duration: 5000
|
|
568
568
|
});
|
|
569
569
|
return;
|
|
@@ -572,10 +572,10 @@ export const useRelatedDocuments = ({ selectedSearchResult, focusedItem, current
|
|
|
572
572
|
if (!manyToManyRels.some(r => r.masterTID === selectedSearchResult?.fromTID || r.detailTID === selectedSearchResult?.fromTID)) {
|
|
573
573
|
ShowAlert({
|
|
574
574
|
message: isPairing
|
|
575
|
-
?
|
|
576
|
-
:
|
|
575
|
+
? SDKUI_Localizator.NoManyToManyMatchingRelationshipDefinedForSelectedDocumentType
|
|
576
|
+
: SDKUI_Localizator.NoManyToManyUnmatchingRelationshipDefinedForSelectedDocumentType,
|
|
577
577
|
mode: 'warning',
|
|
578
|
-
title: isPairing ?
|
|
578
|
+
title: isPairing ? SDKUI_Localizator.MatchManyDocumentsManyToMany : SDKUI_Localizator.UnmatchManyDocumentsManyToMany,
|
|
579
579
|
duration: 5000
|
|
580
580
|
});
|
|
581
581
|
return;
|
package/lib/ts/types.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ReactNode } from "react";
|
|
2
2
|
import { FileFormats, ITopMediaSession, MetadataDescriptor, MetadataValueDescriptor, UserDescriptor, ValidationItem } from "@topconsultnpm/sdk-ts";
|
|
3
3
|
import { ITMEditorBase } from "../components/base/TMEditorBase";
|
|
4
|
-
import { IColumnProps } from "devextreme-react/
|
|
4
|
+
import { IColumnProps } from "devextreme-react/data-grid";
|
|
5
5
|
export declare enum FormModes {
|
|
6
6
|
None = 0,
|
|
7
7
|
Create = 1,
|