-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into #2423-hotkeys-for-atoms-dont-work-on-funct…
…ional-groups-and-salts-abbreviations # Conflicts: # packages/ketcher-react/src/script/editor/tool/atom.ts
- Loading branch information
Showing
26 changed files
with
460 additions
and
267 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,6 @@ reviewGroups: | |
- yuleicul | ||
- KonstantinEpam23 | ||
developers: | ||
- VandaPonikarova | ||
- VasilevDO | ||
- AnastasiiaPlyako | ||
- gairon |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
name: Choose reviewers | ||
on: | ||
pull_request: | ||
types: [opened, ready_for_review, reopened] | ||
types: [opened] | ||
|
||
jobs: | ||
add-reviews: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: kentaro-m/auto-assign-action@v1.2.5 | ||
with: | ||
configuration-path: '.github/auto_assign.yml' | ||
repo-token: ${{ secrets.REVIEWER_LOTTERY_SECRET }} | ||
configuration-path: '.github/auto_assign.yml' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { Ketcher } from 'ketcher-core' | ||
|
||
declare global { | ||
interface Window { | ||
ketcher: Ketcher | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
packages/ketcher-core/src/utilities/emitEventRequestIsFinished.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
const REQUEST_IS_FINISHED = 'REQUEST_IS_FINISHED' | ||
|
||
/** | ||
* Emit event when request is finished | ||
* Used only for testers to prevent long delays in test cases | ||
* Triggers on Add to canvas / Aromatize / Dearomatize | ||
* Clean Up / Calculate CIP / Paste from clipboard | ||
* maybe somewhere else | ||
*/ | ||
export function emitEventRequestIsFinished(): void { | ||
window?.ketcher?.eventBus.emit(REQUEST_IS_FINISHED) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.