gitextract_iwhcz0fy/ ├── .eslintrc ├── .gitattributes ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .hintrc ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets/ │ ├── icons/ │ │ └── uicons.css │ └── webfonts/ │ └── OFL.txt ├── misc/ │ └── window/ │ ├── LICENSE │ ├── components/ │ │ ├── ControlButton.tsx │ │ ├── Titlebar.less │ │ ├── Titlebar.tsx │ │ ├── WindowControls.tsx │ │ └── WindowFrame.tsx │ ├── titlebarContext.ts │ ├── titlebarContextApi.ts │ ├── titlebarIPC.ts │ ├── titlebarMenus.ts │ └── windowPreload.ts ├── package.json ├── src/ │ ├── common/ │ │ ├── helpers.ts │ │ ├── i18n.ts │ │ ├── keybindings.ts │ │ ├── locals/ │ │ │ ├── ar.ts │ │ │ ├── en.ts │ │ │ ├── es.ts │ │ │ ├── fr.ts │ │ │ ├── he.ts │ │ │ ├── hi.ts │ │ │ ├── ru.ts │ │ │ └── zh.ts │ │ └── shortcuts.ts │ ├── main/ │ │ ├── Onboarding.js │ │ ├── app.ts │ │ └── appWindow.ts │ ├── renderer/ │ │ ├── app.html │ │ ├── appPreload.tsx │ │ ├── appRenderer.tsx │ │ ├── common/ │ │ │ └── types.ts │ │ ├── components/ │ │ │ ├── Application.scss │ │ │ ├── Application.tsx │ │ │ ├── CommandBar/ │ │ │ │ ├── CommandBar.scss │ │ │ │ └── CommandBar.tsx │ │ │ ├── FilesSidebar/ │ │ │ │ ├── FileSystem.scss │ │ │ │ ├── FileSystem.tsx │ │ │ │ ├── FileSystemHelpers.ts │ │ │ │ ├── FilesSidebar.scss │ │ │ │ ├── FilesSidebar.tsx │ │ │ │ ├── SidebarButton.tsx │ │ │ │ └── types.ts │ │ │ ├── Fonts.css │ │ │ ├── GeneralContext.tsx │ │ │ ├── Header/ │ │ │ │ ├── AddTag.tsx │ │ │ │ ├── FilePath.tsx │ │ │ │ ├── Header.scss │ │ │ │ ├── Header.tsx │ │ │ │ └── Tag.tsx │ │ │ ├── Icons.tsx │ │ │ ├── MathSidebar/ │ │ │ │ ├── ActionsGroup.tsx │ │ │ │ ├── MathSidebar.scss │ │ │ │ └── MathSidebar.tsx │ │ │ ├── Page/ │ │ │ │ ├── Grid/ │ │ │ │ │ ├── Blocks/ │ │ │ │ │ │ ├── Blocks.scss │ │ │ │ │ │ ├── DrawBlock.tsx │ │ │ │ │ │ ├── GraphBlock.tsx │ │ │ │ │ │ ├── MathBlock.tsx │ │ │ │ │ │ └── TextBlock.tsx │ │ │ │ │ ├── Grid.scss │ │ │ │ │ ├── Grid.tsx │ │ │ │ │ └── GridElement.tsx │ │ │ │ ├── Page.scss │ │ │ │ ├── Page.tsx │ │ │ │ ├── PagePlaceholder.tsx │ │ │ │ └── ToolsPanel/ │ │ │ │ ├── Tool.tsx │ │ │ │ ├── ToolsPanel.scss │ │ │ │ └── ToolsPanel.tsx │ │ │ ├── Theme.scss │ │ │ └── common/ │ │ │ ├── Modals/ │ │ │ │ ├── ConfirmModal.scss │ │ │ │ ├── ConfirmModal.tsx │ │ │ │ ├── ErrorModal.scss │ │ │ │ └── ErrorModal.tsx │ │ │ ├── Notification.scss │ │ │ ├── Notification.tsx │ │ │ └── Shortcut.tsx │ │ └── hooks/ │ │ ├── useAddBlock.tsx │ │ ├── useDialog.tsx │ │ ├── useFileSaveLoad.tsx │ │ └── useSettings.tsx │ └── typings/ │ └── index.d.ts ├── tools/ │ ├── forge/ │ │ └── forge.config.js │ └── webpack/ │ ├── webpack.aliases.js │ ├── webpack.helpers.js │ ├── webpack.main.js │ ├── webpack.plugins.js │ ├── webpack.renderer.js │ └── webpack.rules.js └── tsconfig.json