@topconsultnpm/sdkui-react 6.21.0-dev2.42 → 6.21.0-dev2.44

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.
@@ -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: 'I documenti selezionati',
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: 'I documenti selezionati e i correlati',
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: 'Copia in una cartella',
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: 'I documenti selezionati',
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: 'I documenti selezionati e i correlati',
751
+ name: SDKUI_Localizator.SelectedDocumentsAndRelated,
752
752
  onClick: () => {
753
753
  setShowTMRelationViewerInCopyToFolderForm(true);
754
754
  setOpenCopyToFolderForm({ open: true, operationType: 'copyToFolder', mode: 'customized', });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@topconsultnpm/sdkui-react",
3
- "version": "6.21.0-dev2.42",
3
+ "version": "6.21.0-dev2.44",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",