-
Notifications
You must be signed in to change notification settings - Fork 176
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' of https://github.com/epam/ketcher into 197-att…
…achment-points-should-be-within-r-group-brackets
- Loading branch information
Showing
894 changed files
with
28,956 additions
and
26,943 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
Validating CODEOWNERS rules …
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 @@ | ||
/ketcher-autotests/ @AleksandraSmolianinova @Ustianskii @Vehemen @Zhirnoff |
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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
module.exports = { | ||
...require('prettier-config-standard'), | ||
bracketSameLine: false | ||
} | ||
bracketSameLine: false, | ||
semi: true, | ||
trailingComma: 'all', | ||
}; |
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
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
import { ErrorModal } from './ErrorModal' | ||
export { ErrorModal } | ||
import { ErrorModal } from './ErrorModal'; | ||
export { ErrorModal }; |
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 |
---|---|---|
@@ -1 +1 @@ | ||
export * from './PolymerToggler' | ||
export * from './PolymerToggler'; |
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,10 +1,10 @@ | ||
import 'react-app-polyfill/ie11' | ||
import 'react-app-polyfill/stable' | ||
import 'url-search-params-polyfill' | ||
import './index.css' | ||
import { createRoot } from 'react-dom/client' | ||
import App from './App' | ||
import 'react-app-polyfill/ie11'; | ||
import 'react-app-polyfill/stable'; | ||
import 'url-search-params-polyfill'; | ||
import './index.css'; | ||
import { createRoot } from 'react-dom/client'; | ||
import App from './App'; | ||
|
||
const container = document.getElementById('root') | ||
const root = createRoot(container as HTMLElement) | ||
root.render(<App />) | ||
const container = document.getElementById('root'); | ||
const root = createRoot(container as HTMLElement); | ||
root.render(<App />); |
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 |
---|---|---|
@@ -1,25 +1,25 @@ | ||
import { Ketcher } from 'ketcher-core' | ||
import { Ketcher } from 'ketcher-core'; | ||
|
||
declare global { | ||
export interface IMessage { | ||
eventType: string | ||
data?: unknown | ||
eventType: string; | ||
data?: unknown; | ||
} | ||
export interface Window { | ||
postMessage( | ||
message: IMessage, | ||
targetOrigin: string, | ||
transfer?: Transferable[] | undefined | ||
): void | ||
transfer?: Transferable[] | undefined, | ||
): void; | ||
|
||
ketcher?: Ketcher | ||
ketcher?: Ketcher; | ||
} | ||
|
||
declare namespace NodeJS { | ||
export interface ProcessEnv { | ||
API_PATH?: string | ||
REACT_APP_API_PATH: string | ||
PUBLIC_URL: string | ||
API_PATH?: string; | ||
REACT_APP_API_PATH: string; | ||
PUBLIC_URL: string; | ||
} | ||
} | ||
} |
Oops, something went wrong.