ketcher-react 3.12.0-rc.2 → 3.13.0-rc.2

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.
Files changed (35) hide show
  1. package/dist/cjs/components/Icon/utils/iconNameToIcon.d.ts +1 -0
  2. package/dist/cjs/index.css +1 -1
  3. package/dist/cjs/index.css.map +1 -1
  4. package/dist/cjs/index.js +1497 -942
  5. package/dist/cjs/index.js.map +1 -1
  6. package/dist/cjs/{index.modern-0386b391.js → index.modern-046987f4.js} +9 -7
  7. package/dist/cjs/{index.modern-0386b391.js.map → index.modern-046987f4.js.map} +1 -1
  8. package/dist/cjs/script/editor/Editor.d.ts +4 -5
  9. package/dist/cjs/script/editor/tool/Tool.d.ts +8 -0
  10. package/dist/cjs/script/editor/tool/fragmentSelection.d.ts +26 -0
  11. package/dist/cjs/script/ui/action/action.types.d.ts +1 -1
  12. package/dist/cjs/script/ui/action/tools.d.ts +9 -1
  13. package/dist/cjs/script/ui/views/components/MonomerCreationWizard/MonomerCreationWizard.types.d.ts +1 -1
  14. package/dist/cjs/script/ui/views/components/StructEditor/StructEditor.d.ts +1 -0
  15. package/dist/cjs/script/ui/views/components/Tooltip/Tooltip.d.ts +23 -0
  16. package/dist/cjs/script/ui/views/components/Tooltip/index.d.ts +16 -0
  17. package/dist/cjs/script/ui/views/toolbars/toolbar.types.d.ts +1 -1
  18. package/dist/components/Icon/utils/iconNameToIcon.d.ts +1 -0
  19. package/dist/index.css +1 -1
  20. package/dist/index.css.map +1 -1
  21. package/dist/index.js +1500 -946
  22. package/dist/index.js.map +1 -1
  23. package/dist/{index.modern-3f8330b9.js → index.modern-a0a9b2aa.js} +9 -7
  24. package/dist/{index.modern-3f8330b9.js.map → index.modern-a0a9b2aa.js.map} +1 -1
  25. package/dist/script/editor/Editor.d.ts +4 -5
  26. package/dist/script/editor/tool/Tool.d.ts +8 -0
  27. package/dist/script/editor/tool/fragmentSelection.d.ts +26 -0
  28. package/dist/script/ui/action/action.types.d.ts +1 -1
  29. package/dist/script/ui/action/tools.d.ts +9 -1
  30. package/dist/script/ui/views/components/MonomerCreationWizard/MonomerCreationWizard.types.d.ts +1 -1
  31. package/dist/script/ui/views/components/StructEditor/StructEditor.d.ts +1 -0
  32. package/dist/script/ui/views/components/Tooltip/Tooltip.d.ts +23 -0
  33. package/dist/script/ui/views/components/Tooltip/index.d.ts +16 -0
  34. package/dist/script/ui/views/toolbars/toolbar.types.d.ts +1 -1
  35. package/package.json +5 -4
@@ -5979,10 +5979,10 @@ var initialState$3 = {
5979
5979
  unipositiveIonsValue: 140,
5980
5980
  oligonucleotidesValue: 200,
5981
5981
  app: {
5982
- buildDate: "2026-01-27T21:09:31" ,
5982
+ buildDate: "2026-02-05T17:32:53" ,
5983
5983
  indigoVersion: process.env.INDIGO_VERSION || '',
5984
5984
  indigoMachine: process.env.INDIGO_MACHINE || '',
5985
- version: "3.12.0-rc.2"
5985
+ version: "3.13.0-rc.2"
5986
5986
  },
5987
5987
  selectedMenuGroupItems: {}
5988
5988
  };
@@ -10775,8 +10775,9 @@ var RnaElementsAccordionView = function RnaElementsAccordionView(_ref) {
10775
10775
  children: [groupData.groups.map(function (_ref2) {
10776
10776
  var groupItems = _ref2.groupItems,
10777
10777
  groupTitle = _ref2.groupTitle;
10778
+ var shouldShowTitle = [MonomerGroups.BASES, MonomerGroups.NUCLEOTIDES, MonomerGroups.PEPTIDES].includes(groupData.groupName);
10778
10779
  return jsxRuntime.jsx(MonomerGroup, {
10779
- title: groupData.groups.length > 1 ? groupTitle : undefined,
10780
+ title: shouldShowTitle ? groupTitle : undefined,
10780
10781
  groupName: groupData.groupName,
10781
10782
  items: groupItems,
10782
10783
  selectedMonomerUniqueKey: activeMonomerKey,
@@ -17763,9 +17764,9 @@ function LeftMenuComponent() {
17763
17764
  title: "Lasso selection (".concat(hotkeysShortcuts.switchSelectTool, ")"),
17764
17765
  testId: "select-lasso"
17765
17766
  }), jsxRuntime.jsx(Menu.Item, {
17766
- itemId: "select-fragment",
17767
- title: "Fragment selection (".concat(hotkeysShortcuts.switchSelectTool, ")"),
17768
- testId: "select-fragment"
17767
+ itemId: "select-structure",
17768
+ title: "Structure Selection (".concat(hotkeysShortcuts.switchSelectTool, ")"),
17769
+ testId: "select-structure"
17769
17770
  })]
17770
17771
  })
17771
17772
  }), jsxRuntime.jsx(Menu.Item, {
@@ -19266,6 +19267,7 @@ var DragGhost = function DragGhost() {
19266
19267
  return jsxRuntime.jsx("div", {
19267
19268
  className: styles.dragGhost,
19268
19269
  ref: ghostWrapperRef,
19270
+ "data-testid": "drag-ghost",
19269
19271
  children: ketcherCore.isLibraryItemRnaPreset(libraryItemDragData.item) ? jsxRuntime.jsx(GhostRnaPreset, {
19270
19272
  preset: libraryItemDragData.item
19271
19273
  }) : jsxRuntime.jsx(GhostMonomer, {
@@ -19890,4 +19892,4 @@ function Editor(_ref2) {
19890
19892
  }
19891
19893
 
19892
19894
  exports["default"] = EditorContainer;
19893
- //# sourceMappingURL=index.modern-0386b391.js.map
19895
+ //# sourceMappingURL=index.modern-046987f4.js.map