@topconsultnpm/sdkui-react 6.21.0-dev2.41 → 6.21.0-dev2.43
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/features/documents/TMCopyToFolderForm.js +33 -36
- package/lib/components/features/documents/TMMergeToPdfForm.js +30 -32
- package/lib/components/features/search/TMSearchResult.js +8 -0
- package/lib/components/forms/Login/TMLoginForm.js +20 -3
- package/lib/helper/SDKUI_Localizator.d.ts +47 -2
- package/lib/helper/SDKUI_Localizator.js +474 -12
- package/lib/hooks/useDocumentOperations.js +5 -5
- package/package.json +1 -1
|
@@ -710,7 +710,7 @@ export const useDocumentOperations = (props) => {
|
|
|
710
710
|
{
|
|
711
711
|
id: 'merge-pdf-only-selected',
|
|
712
712
|
icon: _jsx("i", { className: "dx-icon-pdffile", style: { fontSize: '18px' } }),
|
|
713
|
-
name:
|
|
713
|
+
name: SDKUI_Localizator.SelectedDocuments,
|
|
714
714
|
onClick: () => {
|
|
715
715
|
setShowTMRelationViewerInCopyToFolderForm(false);
|
|
716
716
|
setOpenCopyToFolderForm({ open: true, operationType: 'mergeToPdf', mode: 'onlySelected' });
|
|
@@ -719,7 +719,7 @@ export const useDocumentOperations = (props) => {
|
|
|
719
719
|
{
|
|
720
720
|
id: 'merge-pdf-customized',
|
|
721
721
|
icon: _jsx("i", { className: "dx-icon-pdffile", style: { fontSize: '18px' } }),
|
|
722
|
-
name:
|
|
722
|
+
name: SDKUI_Localizator.SelectedDocumentsAndRelated,
|
|
723
723
|
onClick: () => {
|
|
724
724
|
setShowTMRelationViewerInCopyToFolderForm(true);
|
|
725
725
|
setOpenCopyToFolderForm({ open: true, operationType: 'mergeToPdf', mode: 'customized' });
|
|
@@ -732,14 +732,14 @@ export const useDocumentOperations = (props) => {
|
|
|
732
732
|
return {
|
|
733
733
|
id: 'copy-to-folder',
|
|
734
734
|
icon: _jsx(IconCopy, {}),
|
|
735
|
-
name:
|
|
735
|
+
name: SDKUI_Localizator.CopyToFolder,
|
|
736
736
|
operationType: 'multiRow',
|
|
737
737
|
disabled: isDisabledForMultiRow(),
|
|
738
738
|
submenu: [
|
|
739
739
|
{
|
|
740
740
|
id: 'copy-to-folder-only-selected',
|
|
741
741
|
icon: _jsx(IconCopy, {}),
|
|
742
|
-
name:
|
|
742
|
+
name: SDKUI_Localizator.SelectedDocuments,
|
|
743
743
|
onClick: () => {
|
|
744
744
|
setShowTMRelationViewerInCopyToFolderForm(false);
|
|
745
745
|
setOpenCopyToFolderForm({ open: true, operationType: 'copyToFolder', mode: 'onlySelected' });
|
|
@@ -748,7 +748,7 @@ export const useDocumentOperations = (props) => {
|
|
|
748
748
|
{
|
|
749
749
|
id: 'copy-to-folder-customized',
|
|
750
750
|
icon: _jsx(IconCopy, {}),
|
|
751
|
-
name:
|
|
751
|
+
name: SDKUI_Localizator.SelectedDocumentsAndRelated,
|
|
752
752
|
onClick: () => {
|
|
753
753
|
setShowTMRelationViewerInCopyToFolderForm(true);
|
|
754
754
|
setOpenCopyToFolderForm({ open: true, operationType: 'copyToFolder', mode: 'customized', });
|