├── .codecov.yml ├── .dependabot └── config.yml ├── .editorconfig ├── .env ├── .env.development ├── .env.production ├── .env.test ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .nvmrc ├── .sonarcloud.properties ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Procfile ├── README.md ├── app-icons ├── icon.icns ├── icon.ico └── icon.png ├── azure-pipelines.yml ├── azure-pipelines ├── create-release.yml ├── linux │ ├── continuous-build-linux.yml │ └── xvfb.init ├── mac │ └── continuous-build-mac.yml ├── templates │ ├── build-artifact.yml │ ├── create-github-release.yml │ ├── create-web-release.yml │ ├── git-pull-current-branch.yml │ └── npm-version-bump.yml ├── upload-plato-report.yml └── windows │ └── continuous-build-windows.yml ├── cocoSSDModel ├── classes.json ├── group1-shard1of5 ├── group1-shard2of5 ├── group1-shard3of5 ├── group1-shard4of5 ├── group1-shard5of5 └── model.json ├── config ├── webpack.common.js ├── webpack.dev.js └── webpack.prod.js ├── docs ├── CI.md ├── DEBUG.md ├── PACKAGING.md ├── PLATO.md ├── REACTAPP.md ├── RELEASE_GUIDE.md ├── STYLE.md ├── images │ ├── export-labels.jpg │ ├── label-image.jpg │ ├── ml-workflow.png │ ├── new-connection.jpg │ ├── new-project.jpg │ ├── project-settings.jpg │ ├── release-process.png │ ├── reorder-tag.jpg │ ├── security-tokens.jpg │ └── video-player.jpg └── wireframes.bmpr ├── electron-builder.yml ├── package.json ├── public ├── favicon.ico ├── index.html ├── manifest.json └── tags.svg ├── scripts ├── build.sh ├── complexity-analysis.js ├── generate-changelog.sh ├── generate-report.sh ├── generate-web-artifact.sh ├── git-pull-current-branch.sh ├── release-pr.sh ├── update-report.sh └── version-bump-commit.sh ├── server ├── .env.template ├── .vscode │ ├── launch.json │ └── tasks.json ├── azure-deploy.yml ├── jest.config.js ├── package-lock.json ├── package.json ├── public │ ├── test.html │ └── views │ │ ├── account.ejs │ │ ├── index.ejs │ │ └── layout.ejs ├── src │ ├── __tests__ │ │ ├── api.test.ts │ │ └── extra.test.ts │ ├── app.ts │ ├── config.ts │ ├── graph.ts │ └── oauth2.ts ├── tsconfig.json └── tslint.json ├── src ├── App.scss ├── App.test.tsx ├── App.tsx ├── assets │ ├── css │ │ └── bootstrap-theme-slate.css │ └── sass │ │ └── theme.scss ├── common │ ├── appInfo.ts │ ├── clipboard.test.ts │ ├── clipboard.ts │ ├── constants.ts │ ├── crypto.test.ts │ ├── crypto.ts │ ├── deferred.test.ts │ ├── deferred.ts │ ├── environment.ts │ ├── extensions │ │ ├── array.test.ts │ │ ├── array.ts │ │ ├── map.test.ts │ │ └── map.ts │ ├── guard.test.ts │ ├── guard.ts │ ├── hostProcess.test.ts │ ├── hostProcess.ts │ ├── htmlFileReader.test.ts │ ├── htmlFileReader.ts │ ├── ipcRendererProxy.test.ts │ ├── ipcRendererProxy.ts │ ├── layout.test.tsx │ ├── layout.ts │ ├── localization │ │ ├── en-us.ts │ │ ├── es-cl.ts │ │ ├── ja.ts │ │ ├── ko-kr.ts │ │ ├── zh-ch.ts │ │ └── zh-tw.ts │ ├── mockFactory.ts │ ├── strings.test.ts │ ├── strings.ts │ ├── utils.test.ts │ └── utils.ts ├── electron │ ├── common │ │ ├── ipcMainProxy.test.ts │ │ ├── ipcMainProxy.ts │ │ └── ipcProxy.ts │ ├── main.ts │ ├── providers │ │ └── storage │ │ │ ├── localFileSystem.test.ts │ │ │ └── localFileSystem.ts │ └── start.js ├── history.ts ├── index.scss ├── index.tsx ├── logo.svg ├── models │ ├── applicationState.ts │ └── v1Models.ts ├── providers │ ├── activeLearning │ │ ├── electronProxyHandler.test.ts │ │ ├── electronProxyHandler.ts │ │ ├── objectDetection.test.ts │ │ └── objectDetection.ts │ ├── export │ │ ├── azureCustomVision.json │ │ ├── azureCustomVision.test.ts │ │ ├── azureCustomVision.ts │ │ ├── azureCustomVision.ui.json │ │ ├── azureCustomVision │ │ │ ├── azureCustomVisionService.test.ts │ │ │ └── azureCustomVisionService.ts │ │ ├── cntk.json │ │ ├── cntk.test.ts │ │ ├── cntk.ts │ │ ├── cntk.ui.json │ │ ├── csv.json │ │ ├── csv.test.ts │ │ ├── csv.ts │ │ ├── csv.ui.json │ │ ├── exportProvider.test.ts │ │ ├── exportProvider.ts │ │ ├── exportProviderFactory.test.ts │ │ ├── exportProviderFactory.ts │ │ ├── pascalVOC.json │ │ ├── pascalVOC.test.ts │ │ ├── pascalVOC.ts │ │ ├── pascalVOC.ui.json │ │ ├── pascalVOC │ │ │ └── pascalVOCTemplates.ts │ │ ├── tensorFlowRecords.json │ │ ├── tensorFlowRecords.test.ts │ │ ├── tensorFlowRecords.ts │ │ ├── tensorFlowRecords.ui.json │ │ ├── tensorFlowRecords │ │ │ ├── tensorFlowBuilder.test.ts │ │ │ ├── tensorFlowBuilder.ts │ │ │ ├── tensorFlowHelpers.test.ts │ │ │ ├── tensorFlowHelpers.ts │ │ │ ├── tensorFlowReader.test.ts │ │ │ ├── tensorFlowReader.ts │ │ │ ├── tensorFlowRecordsProtoBuf.proto │ │ │ └── tensorFlowRecordsProtoBuf_pb.js │ │ ├── testAssetsSplitHelper.test.ts │ │ ├── testAssetsSplitHelper.ts │ │ ├── vottJson.json │ │ ├── vottJson.test.ts │ │ ├── vottJson.ts │ │ └── vottJson.ui.json │ ├── storage │ │ ├── assetProviderFactory.test.ts │ │ ├── assetProviderFactory.ts │ │ ├── azureBlobStorage.json │ │ ├── azureBlobStorage.test.ts │ │ ├── azureBlobStorage.ts │ │ ├── azureBlobStorage.ui.json │ │ ├── bingImageSearch.json │ │ ├── bingImageSearch.test.ts │ │ ├── bingImageSearch.ts │ │ ├── bingImageSearch.ui.json │ │ ├── localFileSystemProxy.json │ │ ├── localFileSystemProxy.test.ts │ │ ├── localFileSystemProxy.ts │ │ ├── localFileSystemProxy.ui.json │ │ ├── storageProviderFactory.test.ts │ │ └── storageProviderFactory.ts │ └── toolbar │ │ ├── toolbarItemFactory.test.ts │ │ └── toolbarItemFactory.ts ├── react-app-env.d.ts ├── react │ └── components │ │ ├── common │ │ ├── alert │ │ │ ├── alert.test.tsx │ │ │ └── alert.tsx │ │ ├── arrayField │ │ │ └── arrayFieldTemplate.tsx │ │ ├── assetPreview │ │ │ ├── assetPreview.test.tsx │ │ │ ├── assetPreview.tsx │ │ │ ├── imageAsset.test.tsx │ │ │ ├── imageAsset.tsx │ │ │ ├── tfrecordAsset.test.tsx │ │ │ ├── tfrecordAsset.tsx │ │ │ ├── videoAsset.test.tsx │ │ │ └── videoAsset.tsx │ │ ├── cloudFilePicker │ │ │ ├── cloudFilePicker.test.tsx │ │ │ └── cloudFilePicker.tsx │ │ ├── colorPicker.tsx │ │ ├── common.scss │ │ ├── condensedList │ │ │ ├── condensedList.scss │ │ │ ├── condensedList.test.tsx │ │ │ └── condensedList.tsx │ │ ├── conditionalNavLink │ │ │ ├── conditionalNavLink.test.tsx │ │ │ └── conditionalNavLink.tsx │ │ ├── confirm │ │ │ ├── confirm.test.tsx │ │ │ └── confirm.tsx │ │ ├── connectionPicker │ │ │ ├── connectionPicker.test.tsx │ │ │ └── connectionPicker.tsx │ │ ├── connectionProviderPicker │ │ │ ├── connectionProviderPicker.test.tsx │ │ │ └── connectionProviderPicker.tsx │ │ ├── customField │ │ │ ├── customField.tsx │ │ │ ├── customFieldTemplate.test.tsx │ │ │ └── customFieldTemplate.tsx │ │ ├── errorHandler │ │ │ ├── errorHandler.test.tsx │ │ │ └── errorHandler.tsx │ │ ├── exportProviderPicker │ │ │ ├── exportProviderPicker.test.tsx │ │ │ └── exportProviderPicker.tsx │ │ ├── externalPicker │ │ │ ├── externalPicker.test.tsx │ │ │ └── externalPicker.tsx │ │ ├── filePicker │ │ │ ├── filePicker.test.tsx │ │ │ └── filePicker.tsx │ │ ├── keyboardBinding │ │ │ ├── keyboardBinding.test.tsx │ │ │ └── keyboardBinding.tsx │ │ ├── keyboardManager │ │ │ ├── keyboardManager.test.tsx │ │ │ ├── keyboardManager.tsx │ │ │ ├── keyboardRegistrationManager.test.ts │ │ │ └── keyboardRegistrationManager.ts │ │ ├── localFolderPicker │ │ │ ├── localFolderPicker.test.tsx │ │ │ └── localFolderPicker.tsx │ │ ├── messageBox │ │ │ ├── messageBox.test.tsx │ │ │ └── messageBox.tsx │ │ ├── objectField │ │ │ └── objectFieldTemplate.tsx │ │ ├── protectedInput │ │ │ ├── protectedInput.test.tsx │ │ │ └── protectedInput.tsx │ │ ├── securityTokenPicker │ │ │ ├── securityTokenPicker.test.tsx │ │ │ └── securityTokenPicker.tsx │ │ ├── slider │ │ │ ├── slider.test.tsx │ │ │ └── slider.tsx │ │ ├── tagColors.json │ │ ├── tagInput │ │ │ ├── tagInput.scss │ │ │ ├── tagInput.test.tsx │ │ │ ├── tagInput.tsx │ │ │ ├── tagInputItem.test.tsx │ │ │ ├── tagInputItem.tsx │ │ │ └── tagInputToolbar.tsx │ │ └── videoPlayer │ │ │ ├── customVideoPlayerButton.test.tsx │ │ │ └── customVideoPlayerButton.tsx │ │ ├── pages │ │ ├── activeLearning │ │ │ ├── activeLearningForm.json │ │ │ ├── activeLearningForm.test.tsx │ │ │ ├── activeLearningForm.tsx │ │ │ ├── activeLearningForm.ui.json │ │ │ ├── activeLearningPage.test.tsx │ │ │ └── activeLearningPage.tsx │ │ ├── appSettings │ │ │ ├── appSettingsForm.json │ │ │ ├── appSettingsForm.test.tsx │ │ │ ├── appSettingsForm.tsx │ │ │ ├── appSettingsForm.ui.json │ │ │ ├── appSettingsPage.scss │ │ │ ├── appSettingsPage.test.tsx │ │ │ └── appSettingsPage.tsx │ │ ├── connections │ │ │ ├── connectionForm.json │ │ │ ├── connectionForm.test.tsx │ │ │ ├── connectionForm.tsx │ │ │ ├── connectionForm.ui.json │ │ │ ├── connectionItem.tsx │ │ │ ├── connectionsPage.scss │ │ │ ├── connectionsPage.test.tsx │ │ │ └── connectionsPage.tsx │ │ ├── editorPage │ │ │ ├── canvas.test.tsx │ │ │ ├── canvas.tsx │ │ │ ├── canvasHelpers.test.ts │ │ │ ├── canvasHelpers.ts │ │ │ ├── editorPage.scss │ │ │ ├── editorPage.test.tsx │ │ │ ├── editorPage.tsx │ │ │ ├── editorSideBar.test.tsx │ │ │ ├── editorSideBar.tsx │ │ │ ├── editorToolbar.scss │ │ │ ├── editorToolbar.test.tsx │ │ │ └── editorToolbar.tsx │ │ ├── export │ │ │ ├── exportForm.json │ │ │ ├── exportForm.test.tsx │ │ │ ├── exportForm.tsx │ │ │ ├── exportForm.ui.json │ │ │ ├── exportPage.test.tsx │ │ │ └── exportPage.tsx │ │ ├── homepage │ │ │ ├── homePage.scss │ │ │ ├── homePage.test.tsx │ │ │ ├── homePage.tsx │ │ │ └── recentProjectItem.tsx │ │ └── projectSettings │ │ │ ├── projectForm.json │ │ │ ├── projectForm.test.tsx │ │ │ ├── projectForm.tsx │ │ │ ├── projectForm.ui.json │ │ │ ├── projectMetrics.test.tsx │ │ │ ├── projectMetrics.tsx │ │ │ ├── projectSettingsPage.scss │ │ │ ├── projectSettingsPage.test.tsx │ │ │ └── projectSettingsPage.tsx │ │ ├── shell │ │ ├── helpMenu.scss │ │ ├── helpMenu.test.tsx │ │ ├── helpMenu.tsx │ │ ├── mainContentRouter.test.tsx │ │ ├── mainContentRouter.tsx │ │ ├── sidebar.test.tsx │ │ ├── sidebar.tsx │ │ ├── statusBar.scss │ │ ├── statusBar.test.tsx │ │ ├── statusBar.tsx │ │ ├── statusBarMetrics.test.tsx │ │ ├── statusBarMetrics.tsx │ │ ├── titleBar.scss │ │ ├── titleBar.test.tsx │ │ └── titleBar.tsx │ │ └── toolbar │ │ ├── exportProject.tsx │ │ ├── saveProject.test.tsx │ │ ├── saveProject.tsx │ │ ├── toolbarItem.test.tsx │ │ └── toolbarItem.tsx ├── redux │ ├── actions │ │ ├── actionCreators.ts │ │ ├── actionTypes.ts │ │ ├── appErrorActions.test.ts │ │ ├── appErrorActions.ts │ │ ├── applicationActions.test.ts │ │ ├── applicationActions.ts │ │ ├── connectionActions.test.ts │ │ ├── connectionActions.ts │ │ ├── projectActions.test.ts │ │ └── projectActions.ts │ ├── middleware │ │ ├── appInsights.test.ts │ │ ├── appInsights.ts │ │ └── localStorage.ts │ ├── reducers │ │ ├── appErrorReducer.test.ts │ │ ├── appErrorReducer.ts │ │ ├── applicationReducer.test.ts │ │ ├── applicationReducer.ts │ │ ├── connectionsReducer.test.ts │ │ ├── connectionsReducer.ts │ │ ├── currentProjectReducer.test.ts │ │ ├── currentProjectReducer.ts │ │ ├── index.ts │ │ ├── recentProjectsReducer.test.ts │ │ └── recentProjectsReducer.ts │ └── store │ │ ├── initialState.ts │ │ └── store.ts ├── registerMixins.ts ├── registerProviders.test.ts ├── registerProviders.ts ├── registerToolbar.ts ├── serviceWorker.ts ├── services │ ├── activeLearningService.test.ts │ ├── activeLearningService.ts │ ├── assetService.test.ts │ ├── assetService.ts │ ├── connectionService.test.ts │ ├── connectionService.ts │ ├── importService.test.tsx │ ├── importService.ts │ ├── projectService.test.ts │ └── projectService.ts ├── setupTests.js ├── telemetry.test.ts └── telemetry.ts ├── tsconfig.json ├── tslint.json ├── typings.json └── typings └── react-jsonschema-form └── index.d.ts /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.dependabot/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/.dependabot/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/.env -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- 1 | REACT_APP_INSTRUMENTATION_KEY=40a80c0c-b913-45b7-afc9-c7eb3ed62900 2 | -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- 1 | REACT_APP_INSTRUMENTATION_KEY=0b9e5117-c78d-40c9-9338-921092cde49a 2 | -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- 1 | HOST_TYPE=electron 2 | INSTRUMENTATION_KEY=40a80c0c-b913-45b7-afc9-c7eb3ed62900 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 10.15.1 2 | -------------------------------------------------------------------------------- /.sonarcloud.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/.sonarcloud.properties -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/README.md -------------------------------------------------------------------------------- /app-icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/app-icons/icon.icns -------------------------------------------------------------------------------- /app-icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/app-icons/icon.ico -------------------------------------------------------------------------------- /app-icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/app-icons/icon.png -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /azure-pipelines/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/azure-pipelines/create-release.yml -------------------------------------------------------------------------------- /azure-pipelines/linux/continuous-build-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/azure-pipelines/linux/continuous-build-linux.yml -------------------------------------------------------------------------------- /azure-pipelines/linux/xvfb.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/azure-pipelines/linux/xvfb.init -------------------------------------------------------------------------------- /azure-pipelines/mac/continuous-build-mac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/azure-pipelines/mac/continuous-build-mac.yml -------------------------------------------------------------------------------- /azure-pipelines/templates/build-artifact.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/azure-pipelines/templates/build-artifact.yml -------------------------------------------------------------------------------- /azure-pipelines/templates/create-github-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/azure-pipelines/templates/create-github-release.yml -------------------------------------------------------------------------------- /azure-pipelines/templates/create-web-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/azure-pipelines/templates/create-web-release.yml -------------------------------------------------------------------------------- /azure-pipelines/templates/git-pull-current-branch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/azure-pipelines/templates/git-pull-current-branch.yml -------------------------------------------------------------------------------- /azure-pipelines/templates/npm-version-bump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/azure-pipelines/templates/npm-version-bump.yml -------------------------------------------------------------------------------- /azure-pipelines/upload-plato-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/azure-pipelines/upload-plato-report.yml -------------------------------------------------------------------------------- /azure-pipelines/windows/continuous-build-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/azure-pipelines/windows/continuous-build-windows.yml -------------------------------------------------------------------------------- /cocoSSDModel/classes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/cocoSSDModel/classes.json -------------------------------------------------------------------------------- /cocoSSDModel/group1-shard1of5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/cocoSSDModel/group1-shard1of5 -------------------------------------------------------------------------------- /cocoSSDModel/group1-shard2of5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/cocoSSDModel/group1-shard2of5 -------------------------------------------------------------------------------- /cocoSSDModel/group1-shard3of5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/cocoSSDModel/group1-shard3of5 -------------------------------------------------------------------------------- /cocoSSDModel/group1-shard4of5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/cocoSSDModel/group1-shard4of5 -------------------------------------------------------------------------------- /cocoSSDModel/group1-shard5of5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/cocoSSDModel/group1-shard5of5 -------------------------------------------------------------------------------- /cocoSSDModel/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/cocoSSDModel/model.json -------------------------------------------------------------------------------- /config/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/config/webpack.common.js -------------------------------------------------------------------------------- /config/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/config/webpack.dev.js -------------------------------------------------------------------------------- /config/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/config/webpack.prod.js -------------------------------------------------------------------------------- /docs/CI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/docs/CI.md -------------------------------------------------------------------------------- /docs/DEBUG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/docs/DEBUG.md -------------------------------------------------------------------------------- /docs/PACKAGING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/docs/PACKAGING.md -------------------------------------------------------------------------------- /docs/PLATO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/docs/PLATO.md -------------------------------------------------------------------------------- /docs/REACTAPP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/docs/REACTAPP.md -------------------------------------------------------------------------------- /docs/RELEASE_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/docs/RELEASE_GUIDE.md -------------------------------------------------------------------------------- /docs/STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/docs/STYLE.md -------------------------------------------------------------------------------- /docs/images/export-labels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/docs/images/export-labels.jpg -------------------------------------------------------------------------------- /docs/images/label-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/docs/images/label-image.jpg -------------------------------------------------------------------------------- /docs/images/ml-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/docs/images/ml-workflow.png -------------------------------------------------------------------------------- /docs/images/new-connection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/docs/images/new-connection.jpg -------------------------------------------------------------------------------- /docs/images/new-project.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/docs/images/new-project.jpg -------------------------------------------------------------------------------- /docs/images/project-settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/docs/images/project-settings.jpg -------------------------------------------------------------------------------- /docs/images/release-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/docs/images/release-process.png -------------------------------------------------------------------------------- /docs/images/reorder-tag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/docs/images/reorder-tag.jpg -------------------------------------------------------------------------------- /docs/images/security-tokens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/docs/images/security-tokens.jpg -------------------------------------------------------------------------------- /docs/images/video-player.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/docs/images/video-player.jpg -------------------------------------------------------------------------------- /docs/wireframes.bmpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/docs/wireframes.bmpr -------------------------------------------------------------------------------- /electron-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/electron-builder.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/tags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/public/tags.svg -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/complexity-analysis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/scripts/complexity-analysis.js -------------------------------------------------------------------------------- /scripts/generate-changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/scripts/generate-changelog.sh -------------------------------------------------------------------------------- /scripts/generate-report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/scripts/generate-report.sh -------------------------------------------------------------------------------- /scripts/generate-web-artifact.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/scripts/generate-web-artifact.sh -------------------------------------------------------------------------------- /scripts/git-pull-current-branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/scripts/git-pull-current-branch.sh -------------------------------------------------------------------------------- /scripts/release-pr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/scripts/release-pr.sh -------------------------------------------------------------------------------- /scripts/update-report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/scripts/update-report.sh -------------------------------------------------------------------------------- /scripts/version-bump-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/scripts/version-bump-commit.sh -------------------------------------------------------------------------------- /server/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/server/.env.template -------------------------------------------------------------------------------- /server/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/server/.vscode/launch.json -------------------------------------------------------------------------------- /server/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/server/.vscode/tasks.json -------------------------------------------------------------------------------- /server/azure-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/server/azure-deploy.yml -------------------------------------------------------------------------------- /server/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/server/jest.config.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/server/package.json -------------------------------------------------------------------------------- /server/public/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/server/public/test.html -------------------------------------------------------------------------------- /server/public/views/account.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/server/public/views/account.ejs -------------------------------------------------------------------------------- /server/public/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/server/public/views/index.ejs -------------------------------------------------------------------------------- /server/public/views/layout.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/server/public/views/layout.ejs -------------------------------------------------------------------------------- /server/src/__tests__/api.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/server/src/__tests__/api.test.ts -------------------------------------------------------------------------------- /server/src/__tests__/extra.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/server/src/__tests__/extra.test.ts -------------------------------------------------------------------------------- /server/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/server/src/app.ts -------------------------------------------------------------------------------- /server/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/server/src/config.ts -------------------------------------------------------------------------------- /server/src/graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/server/src/graph.ts -------------------------------------------------------------------------------- /server/src/oauth2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/server/src/oauth2.ts -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/server/tsconfig.json -------------------------------------------------------------------------------- /server/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/server/tslint.json -------------------------------------------------------------------------------- /src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/App.scss -------------------------------------------------------------------------------- /src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/App.test.tsx -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/css/bootstrap-theme-slate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/assets/css/bootstrap-theme-slate.css -------------------------------------------------------------------------------- /src/assets/sass/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/assets/sass/theme.scss -------------------------------------------------------------------------------- /src/common/appInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/appInfo.ts -------------------------------------------------------------------------------- /src/common/clipboard.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/clipboard.test.ts -------------------------------------------------------------------------------- /src/common/clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/clipboard.ts -------------------------------------------------------------------------------- /src/common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/constants.ts -------------------------------------------------------------------------------- /src/common/crypto.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/crypto.test.ts -------------------------------------------------------------------------------- /src/common/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/crypto.ts -------------------------------------------------------------------------------- /src/common/deferred.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/deferred.test.ts -------------------------------------------------------------------------------- /src/common/deferred.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/deferred.ts -------------------------------------------------------------------------------- /src/common/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/environment.ts -------------------------------------------------------------------------------- /src/common/extensions/array.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/extensions/array.test.ts -------------------------------------------------------------------------------- /src/common/extensions/array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/extensions/array.ts -------------------------------------------------------------------------------- /src/common/extensions/map.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/extensions/map.test.ts -------------------------------------------------------------------------------- /src/common/extensions/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/extensions/map.ts -------------------------------------------------------------------------------- /src/common/guard.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/guard.test.ts -------------------------------------------------------------------------------- /src/common/guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/guard.ts -------------------------------------------------------------------------------- /src/common/hostProcess.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/hostProcess.test.ts -------------------------------------------------------------------------------- /src/common/hostProcess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/hostProcess.ts -------------------------------------------------------------------------------- /src/common/htmlFileReader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/htmlFileReader.test.ts -------------------------------------------------------------------------------- /src/common/htmlFileReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/htmlFileReader.ts -------------------------------------------------------------------------------- /src/common/ipcRendererProxy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/ipcRendererProxy.test.ts -------------------------------------------------------------------------------- /src/common/ipcRendererProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/ipcRendererProxy.ts -------------------------------------------------------------------------------- /src/common/layout.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/layout.test.tsx -------------------------------------------------------------------------------- /src/common/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/layout.ts -------------------------------------------------------------------------------- /src/common/localization/en-us.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/localization/en-us.ts -------------------------------------------------------------------------------- /src/common/localization/es-cl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/localization/es-cl.ts -------------------------------------------------------------------------------- /src/common/localization/ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/localization/ja.ts -------------------------------------------------------------------------------- /src/common/localization/ko-kr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/localization/ko-kr.ts -------------------------------------------------------------------------------- /src/common/localization/zh-ch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/localization/zh-ch.ts -------------------------------------------------------------------------------- /src/common/localization/zh-tw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/localization/zh-tw.ts -------------------------------------------------------------------------------- /src/common/mockFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/mockFactory.ts -------------------------------------------------------------------------------- /src/common/strings.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/strings.test.ts -------------------------------------------------------------------------------- /src/common/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/strings.ts -------------------------------------------------------------------------------- /src/common/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/utils.test.ts -------------------------------------------------------------------------------- /src/common/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/common/utils.ts -------------------------------------------------------------------------------- /src/electron/common/ipcMainProxy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/electron/common/ipcMainProxy.test.ts -------------------------------------------------------------------------------- /src/electron/common/ipcMainProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/electron/common/ipcMainProxy.ts -------------------------------------------------------------------------------- /src/electron/common/ipcProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/electron/common/ipcProxy.ts -------------------------------------------------------------------------------- /src/electron/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/electron/main.ts -------------------------------------------------------------------------------- /src/electron/providers/storage/localFileSystem.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/electron/providers/storage/localFileSystem.test.ts -------------------------------------------------------------------------------- /src/electron/providers/storage/localFileSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/electron/providers/storage/localFileSystem.ts -------------------------------------------------------------------------------- /src/electron/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/electron/start.js -------------------------------------------------------------------------------- /src/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/history.ts -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/models/applicationState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/models/applicationState.ts -------------------------------------------------------------------------------- /src/models/v1Models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/models/v1Models.ts -------------------------------------------------------------------------------- /src/providers/activeLearning/electronProxyHandler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/activeLearning/electronProxyHandler.test.ts -------------------------------------------------------------------------------- /src/providers/activeLearning/electronProxyHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/activeLearning/electronProxyHandler.ts -------------------------------------------------------------------------------- /src/providers/activeLearning/objectDetection.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/activeLearning/objectDetection.test.ts -------------------------------------------------------------------------------- /src/providers/activeLearning/objectDetection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/activeLearning/objectDetection.ts -------------------------------------------------------------------------------- /src/providers/export/azureCustomVision.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/azureCustomVision.json -------------------------------------------------------------------------------- /src/providers/export/azureCustomVision.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/azureCustomVision.test.ts -------------------------------------------------------------------------------- /src/providers/export/azureCustomVision.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/azureCustomVision.ts -------------------------------------------------------------------------------- /src/providers/export/azureCustomVision.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/azureCustomVision.ui.json -------------------------------------------------------------------------------- /src/providers/export/azureCustomVision/azureCustomVisionService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/azureCustomVision/azureCustomVisionService.test.ts -------------------------------------------------------------------------------- /src/providers/export/azureCustomVision/azureCustomVisionService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/azureCustomVision/azureCustomVisionService.ts -------------------------------------------------------------------------------- /src/providers/export/cntk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/cntk.json -------------------------------------------------------------------------------- /src/providers/export/cntk.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/cntk.test.ts -------------------------------------------------------------------------------- /src/providers/export/cntk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/cntk.ts -------------------------------------------------------------------------------- /src/providers/export/cntk.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/cntk.ui.json -------------------------------------------------------------------------------- /src/providers/export/csv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/csv.json -------------------------------------------------------------------------------- /src/providers/export/csv.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/csv.test.ts -------------------------------------------------------------------------------- /src/providers/export/csv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/csv.ts -------------------------------------------------------------------------------- /src/providers/export/csv.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/csv.ui.json -------------------------------------------------------------------------------- /src/providers/export/exportProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/exportProvider.test.ts -------------------------------------------------------------------------------- /src/providers/export/exportProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/exportProvider.ts -------------------------------------------------------------------------------- /src/providers/export/exportProviderFactory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/exportProviderFactory.test.ts -------------------------------------------------------------------------------- /src/providers/export/exportProviderFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/exportProviderFactory.ts -------------------------------------------------------------------------------- /src/providers/export/pascalVOC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/pascalVOC.json -------------------------------------------------------------------------------- /src/providers/export/pascalVOC.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/pascalVOC.test.ts -------------------------------------------------------------------------------- /src/providers/export/pascalVOC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/pascalVOC.ts -------------------------------------------------------------------------------- /src/providers/export/pascalVOC.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/pascalVOC.ui.json -------------------------------------------------------------------------------- /src/providers/export/pascalVOC/pascalVOCTemplates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/pascalVOC/pascalVOCTemplates.ts -------------------------------------------------------------------------------- /src/providers/export/tensorFlowRecords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/tensorFlowRecords.json -------------------------------------------------------------------------------- /src/providers/export/tensorFlowRecords.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/tensorFlowRecords.test.ts -------------------------------------------------------------------------------- /src/providers/export/tensorFlowRecords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/tensorFlowRecords.ts -------------------------------------------------------------------------------- /src/providers/export/tensorFlowRecords.ui.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/providers/export/tensorFlowRecords/tensorFlowBuilder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/tensorFlowRecords/tensorFlowBuilder.test.ts -------------------------------------------------------------------------------- /src/providers/export/tensorFlowRecords/tensorFlowBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/tensorFlowRecords/tensorFlowBuilder.ts -------------------------------------------------------------------------------- /src/providers/export/tensorFlowRecords/tensorFlowHelpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/tensorFlowRecords/tensorFlowHelpers.test.ts -------------------------------------------------------------------------------- /src/providers/export/tensorFlowRecords/tensorFlowHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/tensorFlowRecords/tensorFlowHelpers.ts -------------------------------------------------------------------------------- /src/providers/export/tensorFlowRecords/tensorFlowReader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/tensorFlowRecords/tensorFlowReader.test.ts -------------------------------------------------------------------------------- /src/providers/export/tensorFlowRecords/tensorFlowReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/tensorFlowRecords/tensorFlowReader.ts -------------------------------------------------------------------------------- /src/providers/export/tensorFlowRecords/tensorFlowRecordsProtoBuf.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/tensorFlowRecords/tensorFlowRecordsProtoBuf.proto -------------------------------------------------------------------------------- /src/providers/export/tensorFlowRecords/tensorFlowRecordsProtoBuf_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/tensorFlowRecords/tensorFlowRecordsProtoBuf_pb.js -------------------------------------------------------------------------------- /src/providers/export/testAssetsSplitHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/testAssetsSplitHelper.test.ts -------------------------------------------------------------------------------- /src/providers/export/testAssetsSplitHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/testAssetsSplitHelper.ts -------------------------------------------------------------------------------- /src/providers/export/vottJson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/vottJson.json -------------------------------------------------------------------------------- /src/providers/export/vottJson.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/vottJson.test.ts -------------------------------------------------------------------------------- /src/providers/export/vottJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/vottJson.ts -------------------------------------------------------------------------------- /src/providers/export/vottJson.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/export/vottJson.ui.json -------------------------------------------------------------------------------- /src/providers/storage/assetProviderFactory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/storage/assetProviderFactory.test.ts -------------------------------------------------------------------------------- /src/providers/storage/assetProviderFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/storage/assetProviderFactory.ts -------------------------------------------------------------------------------- /src/providers/storage/azureBlobStorage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/storage/azureBlobStorage.json -------------------------------------------------------------------------------- /src/providers/storage/azureBlobStorage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/storage/azureBlobStorage.test.ts -------------------------------------------------------------------------------- /src/providers/storage/azureBlobStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/storage/azureBlobStorage.ts -------------------------------------------------------------------------------- /src/providers/storage/azureBlobStorage.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/storage/azureBlobStorage.ui.json -------------------------------------------------------------------------------- /src/providers/storage/bingImageSearch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/storage/bingImageSearch.json -------------------------------------------------------------------------------- /src/providers/storage/bingImageSearch.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/storage/bingImageSearch.test.ts -------------------------------------------------------------------------------- /src/providers/storage/bingImageSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/storage/bingImageSearch.ts -------------------------------------------------------------------------------- /src/providers/storage/bingImageSearch.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/storage/bingImageSearch.ui.json -------------------------------------------------------------------------------- /src/providers/storage/localFileSystemProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/storage/localFileSystemProxy.json -------------------------------------------------------------------------------- /src/providers/storage/localFileSystemProxy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/storage/localFileSystemProxy.test.ts -------------------------------------------------------------------------------- /src/providers/storage/localFileSystemProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/storage/localFileSystemProxy.ts -------------------------------------------------------------------------------- /src/providers/storage/localFileSystemProxy.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/storage/localFileSystemProxy.ui.json -------------------------------------------------------------------------------- /src/providers/storage/storageProviderFactory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/storage/storageProviderFactory.test.ts -------------------------------------------------------------------------------- /src/providers/storage/storageProviderFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/storage/storageProviderFactory.ts -------------------------------------------------------------------------------- /src/providers/toolbar/toolbarItemFactory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/toolbar/toolbarItemFactory.test.ts -------------------------------------------------------------------------------- /src/providers/toolbar/toolbarItemFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/providers/toolbar/toolbarItemFactory.ts -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/react/components/common/alert/alert.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/alert/alert.test.tsx -------------------------------------------------------------------------------- /src/react/components/common/alert/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/alert/alert.tsx -------------------------------------------------------------------------------- /src/react/components/common/arrayField/arrayFieldTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/arrayField/arrayFieldTemplate.tsx -------------------------------------------------------------------------------- /src/react/components/common/assetPreview/assetPreview.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/assetPreview/assetPreview.test.tsx -------------------------------------------------------------------------------- /src/react/components/common/assetPreview/assetPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/assetPreview/assetPreview.tsx -------------------------------------------------------------------------------- /src/react/components/common/assetPreview/imageAsset.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/assetPreview/imageAsset.test.tsx -------------------------------------------------------------------------------- /src/react/components/common/assetPreview/imageAsset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/assetPreview/imageAsset.tsx -------------------------------------------------------------------------------- /src/react/components/common/assetPreview/tfrecordAsset.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/assetPreview/tfrecordAsset.test.tsx -------------------------------------------------------------------------------- /src/react/components/common/assetPreview/tfrecordAsset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/assetPreview/tfrecordAsset.tsx -------------------------------------------------------------------------------- /src/react/components/common/assetPreview/videoAsset.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/assetPreview/videoAsset.test.tsx -------------------------------------------------------------------------------- /src/react/components/common/assetPreview/videoAsset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/assetPreview/videoAsset.tsx -------------------------------------------------------------------------------- /src/react/components/common/cloudFilePicker/cloudFilePicker.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/cloudFilePicker/cloudFilePicker.test.tsx -------------------------------------------------------------------------------- /src/react/components/common/cloudFilePicker/cloudFilePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/cloudFilePicker/cloudFilePicker.tsx -------------------------------------------------------------------------------- /src/react/components/common/colorPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/colorPicker.tsx -------------------------------------------------------------------------------- /src/react/components/common/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/common.scss -------------------------------------------------------------------------------- /src/react/components/common/condensedList/condensedList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/condensedList/condensedList.scss -------------------------------------------------------------------------------- /src/react/components/common/condensedList/condensedList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/condensedList/condensedList.test.tsx -------------------------------------------------------------------------------- /src/react/components/common/condensedList/condensedList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/condensedList/condensedList.tsx -------------------------------------------------------------------------------- /src/react/components/common/conditionalNavLink/conditionalNavLink.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/conditionalNavLink/conditionalNavLink.test.tsx -------------------------------------------------------------------------------- /src/react/components/common/conditionalNavLink/conditionalNavLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/conditionalNavLink/conditionalNavLink.tsx -------------------------------------------------------------------------------- /src/react/components/common/confirm/confirm.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/confirm/confirm.test.tsx -------------------------------------------------------------------------------- /src/react/components/common/confirm/confirm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/confirm/confirm.tsx -------------------------------------------------------------------------------- /src/react/components/common/connectionPicker/connectionPicker.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/connectionPicker/connectionPicker.test.tsx -------------------------------------------------------------------------------- /src/react/components/common/connectionPicker/connectionPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/connectionPicker/connectionPicker.tsx -------------------------------------------------------------------------------- /src/react/components/common/connectionProviderPicker/connectionProviderPicker.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/connectionProviderPicker/connectionProviderPicker.test.tsx -------------------------------------------------------------------------------- /src/react/components/common/connectionProviderPicker/connectionProviderPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/connectionProviderPicker/connectionProviderPicker.tsx -------------------------------------------------------------------------------- /src/react/components/common/customField/customField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/customField/customField.tsx -------------------------------------------------------------------------------- /src/react/components/common/customField/customFieldTemplate.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/customField/customFieldTemplate.test.tsx -------------------------------------------------------------------------------- /src/react/components/common/customField/customFieldTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/customField/customFieldTemplate.tsx -------------------------------------------------------------------------------- /src/react/components/common/errorHandler/errorHandler.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/errorHandler/errorHandler.test.tsx -------------------------------------------------------------------------------- /src/react/components/common/errorHandler/errorHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/errorHandler/errorHandler.tsx -------------------------------------------------------------------------------- /src/react/components/common/exportProviderPicker/exportProviderPicker.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/exportProviderPicker/exportProviderPicker.test.tsx -------------------------------------------------------------------------------- /src/react/components/common/exportProviderPicker/exportProviderPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/exportProviderPicker/exportProviderPicker.tsx -------------------------------------------------------------------------------- /src/react/components/common/externalPicker/externalPicker.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/externalPicker/externalPicker.test.tsx -------------------------------------------------------------------------------- /src/react/components/common/externalPicker/externalPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/externalPicker/externalPicker.tsx -------------------------------------------------------------------------------- /src/react/components/common/filePicker/filePicker.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/filePicker/filePicker.test.tsx -------------------------------------------------------------------------------- /src/react/components/common/filePicker/filePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/filePicker/filePicker.tsx -------------------------------------------------------------------------------- /src/react/components/common/keyboardBinding/keyboardBinding.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/keyboardBinding/keyboardBinding.test.tsx -------------------------------------------------------------------------------- /src/react/components/common/keyboardBinding/keyboardBinding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/keyboardBinding/keyboardBinding.tsx -------------------------------------------------------------------------------- /src/react/components/common/keyboardManager/keyboardManager.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/keyboardManager/keyboardManager.test.tsx -------------------------------------------------------------------------------- /src/react/components/common/keyboardManager/keyboardManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/keyboardManager/keyboardManager.tsx -------------------------------------------------------------------------------- /src/react/components/common/keyboardManager/keyboardRegistrationManager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/keyboardManager/keyboardRegistrationManager.test.ts -------------------------------------------------------------------------------- /src/react/components/common/keyboardManager/keyboardRegistrationManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/keyboardManager/keyboardRegistrationManager.ts -------------------------------------------------------------------------------- /src/react/components/common/localFolderPicker/localFolderPicker.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/localFolderPicker/localFolderPicker.test.tsx -------------------------------------------------------------------------------- /src/react/components/common/localFolderPicker/localFolderPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/localFolderPicker/localFolderPicker.tsx -------------------------------------------------------------------------------- /src/react/components/common/messageBox/messageBox.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/messageBox/messageBox.test.tsx -------------------------------------------------------------------------------- /src/react/components/common/messageBox/messageBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/messageBox/messageBox.tsx -------------------------------------------------------------------------------- /src/react/components/common/objectField/objectFieldTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/objectField/objectFieldTemplate.tsx -------------------------------------------------------------------------------- /src/react/components/common/protectedInput/protectedInput.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/protectedInput/protectedInput.test.tsx -------------------------------------------------------------------------------- /src/react/components/common/protectedInput/protectedInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/protectedInput/protectedInput.tsx -------------------------------------------------------------------------------- /src/react/components/common/securityTokenPicker/securityTokenPicker.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/securityTokenPicker/securityTokenPicker.test.tsx -------------------------------------------------------------------------------- /src/react/components/common/securityTokenPicker/securityTokenPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/securityTokenPicker/securityTokenPicker.tsx -------------------------------------------------------------------------------- /src/react/components/common/slider/slider.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/slider/slider.test.tsx -------------------------------------------------------------------------------- /src/react/components/common/slider/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/slider/slider.tsx -------------------------------------------------------------------------------- /src/react/components/common/tagColors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/tagColors.json -------------------------------------------------------------------------------- /src/react/components/common/tagInput/tagInput.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/tagInput/tagInput.scss -------------------------------------------------------------------------------- /src/react/components/common/tagInput/tagInput.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/tagInput/tagInput.test.tsx -------------------------------------------------------------------------------- /src/react/components/common/tagInput/tagInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/tagInput/tagInput.tsx -------------------------------------------------------------------------------- /src/react/components/common/tagInput/tagInputItem.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/tagInput/tagInputItem.test.tsx -------------------------------------------------------------------------------- /src/react/components/common/tagInput/tagInputItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/tagInput/tagInputItem.tsx -------------------------------------------------------------------------------- /src/react/components/common/tagInput/tagInputToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/tagInput/tagInputToolbar.tsx -------------------------------------------------------------------------------- /src/react/components/common/videoPlayer/customVideoPlayerButton.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/videoPlayer/customVideoPlayerButton.test.tsx -------------------------------------------------------------------------------- /src/react/components/common/videoPlayer/customVideoPlayerButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/common/videoPlayer/customVideoPlayerButton.tsx -------------------------------------------------------------------------------- /src/react/components/pages/activeLearning/activeLearningForm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/activeLearning/activeLearningForm.json -------------------------------------------------------------------------------- /src/react/components/pages/activeLearning/activeLearningForm.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/activeLearning/activeLearningForm.test.tsx -------------------------------------------------------------------------------- /src/react/components/pages/activeLearning/activeLearningForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/activeLearning/activeLearningForm.tsx -------------------------------------------------------------------------------- /src/react/components/pages/activeLearning/activeLearningForm.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/activeLearning/activeLearningForm.ui.json -------------------------------------------------------------------------------- /src/react/components/pages/activeLearning/activeLearningPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/activeLearning/activeLearningPage.test.tsx -------------------------------------------------------------------------------- /src/react/components/pages/activeLearning/activeLearningPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/activeLearning/activeLearningPage.tsx -------------------------------------------------------------------------------- /src/react/components/pages/appSettings/appSettingsForm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/appSettings/appSettingsForm.json -------------------------------------------------------------------------------- /src/react/components/pages/appSettings/appSettingsForm.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/appSettings/appSettingsForm.test.tsx -------------------------------------------------------------------------------- /src/react/components/pages/appSettings/appSettingsForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/appSettings/appSettingsForm.tsx -------------------------------------------------------------------------------- /src/react/components/pages/appSettings/appSettingsForm.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/appSettings/appSettingsForm.ui.json -------------------------------------------------------------------------------- /src/react/components/pages/appSettings/appSettingsPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/appSettings/appSettingsPage.scss -------------------------------------------------------------------------------- /src/react/components/pages/appSettings/appSettingsPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/appSettings/appSettingsPage.test.tsx -------------------------------------------------------------------------------- /src/react/components/pages/appSettings/appSettingsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/appSettings/appSettingsPage.tsx -------------------------------------------------------------------------------- /src/react/components/pages/connections/connectionForm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/connections/connectionForm.json -------------------------------------------------------------------------------- /src/react/components/pages/connections/connectionForm.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/connections/connectionForm.test.tsx -------------------------------------------------------------------------------- /src/react/components/pages/connections/connectionForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/connections/connectionForm.tsx -------------------------------------------------------------------------------- /src/react/components/pages/connections/connectionForm.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/connections/connectionForm.ui.json -------------------------------------------------------------------------------- /src/react/components/pages/connections/connectionItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/connections/connectionItem.tsx -------------------------------------------------------------------------------- /src/react/components/pages/connections/connectionsPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/connections/connectionsPage.scss -------------------------------------------------------------------------------- /src/react/components/pages/connections/connectionsPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/connections/connectionsPage.test.tsx -------------------------------------------------------------------------------- /src/react/components/pages/connections/connectionsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/connections/connectionsPage.tsx -------------------------------------------------------------------------------- /src/react/components/pages/editorPage/canvas.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/editorPage/canvas.test.tsx -------------------------------------------------------------------------------- /src/react/components/pages/editorPage/canvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/editorPage/canvas.tsx -------------------------------------------------------------------------------- /src/react/components/pages/editorPage/canvasHelpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/editorPage/canvasHelpers.test.ts -------------------------------------------------------------------------------- /src/react/components/pages/editorPage/canvasHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/editorPage/canvasHelpers.ts -------------------------------------------------------------------------------- /src/react/components/pages/editorPage/editorPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/editorPage/editorPage.scss -------------------------------------------------------------------------------- /src/react/components/pages/editorPage/editorPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/editorPage/editorPage.test.tsx -------------------------------------------------------------------------------- /src/react/components/pages/editorPage/editorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/editorPage/editorPage.tsx -------------------------------------------------------------------------------- /src/react/components/pages/editorPage/editorSideBar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/editorPage/editorSideBar.test.tsx -------------------------------------------------------------------------------- /src/react/components/pages/editorPage/editorSideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/editorPage/editorSideBar.tsx -------------------------------------------------------------------------------- /src/react/components/pages/editorPage/editorToolbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/editorPage/editorToolbar.scss -------------------------------------------------------------------------------- /src/react/components/pages/editorPage/editorToolbar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/editorPage/editorToolbar.test.tsx -------------------------------------------------------------------------------- /src/react/components/pages/editorPage/editorToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/editorPage/editorToolbar.tsx -------------------------------------------------------------------------------- /src/react/components/pages/export/exportForm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/export/exportForm.json -------------------------------------------------------------------------------- /src/react/components/pages/export/exportForm.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/export/exportForm.test.tsx -------------------------------------------------------------------------------- /src/react/components/pages/export/exportForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/export/exportForm.tsx -------------------------------------------------------------------------------- /src/react/components/pages/export/exportForm.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/export/exportForm.ui.json -------------------------------------------------------------------------------- /src/react/components/pages/export/exportPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/export/exportPage.test.tsx -------------------------------------------------------------------------------- /src/react/components/pages/export/exportPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/export/exportPage.tsx -------------------------------------------------------------------------------- /src/react/components/pages/homepage/homePage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/homepage/homePage.scss -------------------------------------------------------------------------------- /src/react/components/pages/homepage/homePage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/homepage/homePage.test.tsx -------------------------------------------------------------------------------- /src/react/components/pages/homepage/homePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/homepage/homePage.tsx -------------------------------------------------------------------------------- /src/react/components/pages/homepage/recentProjectItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/homepage/recentProjectItem.tsx -------------------------------------------------------------------------------- /src/react/components/pages/projectSettings/projectForm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/projectSettings/projectForm.json -------------------------------------------------------------------------------- /src/react/components/pages/projectSettings/projectForm.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/projectSettings/projectForm.test.tsx -------------------------------------------------------------------------------- /src/react/components/pages/projectSettings/projectForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/projectSettings/projectForm.tsx -------------------------------------------------------------------------------- /src/react/components/pages/projectSettings/projectForm.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/projectSettings/projectForm.ui.json -------------------------------------------------------------------------------- /src/react/components/pages/projectSettings/projectMetrics.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/projectSettings/projectMetrics.test.tsx -------------------------------------------------------------------------------- /src/react/components/pages/projectSettings/projectMetrics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/projectSettings/projectMetrics.tsx -------------------------------------------------------------------------------- /src/react/components/pages/projectSettings/projectSettingsPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/projectSettings/projectSettingsPage.scss -------------------------------------------------------------------------------- /src/react/components/pages/projectSettings/projectSettingsPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/projectSettings/projectSettingsPage.test.tsx -------------------------------------------------------------------------------- /src/react/components/pages/projectSettings/projectSettingsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/pages/projectSettings/projectSettingsPage.tsx -------------------------------------------------------------------------------- /src/react/components/shell/helpMenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/shell/helpMenu.scss -------------------------------------------------------------------------------- /src/react/components/shell/helpMenu.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/shell/helpMenu.test.tsx -------------------------------------------------------------------------------- /src/react/components/shell/helpMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/shell/helpMenu.tsx -------------------------------------------------------------------------------- /src/react/components/shell/mainContentRouter.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/shell/mainContentRouter.test.tsx -------------------------------------------------------------------------------- /src/react/components/shell/mainContentRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/shell/mainContentRouter.tsx -------------------------------------------------------------------------------- /src/react/components/shell/sidebar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/shell/sidebar.test.tsx -------------------------------------------------------------------------------- /src/react/components/shell/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/shell/sidebar.tsx -------------------------------------------------------------------------------- /src/react/components/shell/statusBar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/shell/statusBar.scss -------------------------------------------------------------------------------- /src/react/components/shell/statusBar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/shell/statusBar.test.tsx -------------------------------------------------------------------------------- /src/react/components/shell/statusBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/shell/statusBar.tsx -------------------------------------------------------------------------------- /src/react/components/shell/statusBarMetrics.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/shell/statusBarMetrics.test.tsx -------------------------------------------------------------------------------- /src/react/components/shell/statusBarMetrics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/shell/statusBarMetrics.tsx -------------------------------------------------------------------------------- /src/react/components/shell/titleBar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/shell/titleBar.scss -------------------------------------------------------------------------------- /src/react/components/shell/titleBar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/shell/titleBar.test.tsx -------------------------------------------------------------------------------- /src/react/components/shell/titleBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/shell/titleBar.tsx -------------------------------------------------------------------------------- /src/react/components/toolbar/exportProject.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/toolbar/exportProject.tsx -------------------------------------------------------------------------------- /src/react/components/toolbar/saveProject.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/toolbar/saveProject.test.tsx -------------------------------------------------------------------------------- /src/react/components/toolbar/saveProject.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/toolbar/saveProject.tsx -------------------------------------------------------------------------------- /src/react/components/toolbar/toolbarItem.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/toolbar/toolbarItem.test.tsx -------------------------------------------------------------------------------- /src/react/components/toolbar/toolbarItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/react/components/toolbar/toolbarItem.tsx -------------------------------------------------------------------------------- /src/redux/actions/actionCreators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/redux/actions/actionCreators.ts -------------------------------------------------------------------------------- /src/redux/actions/actionTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/redux/actions/actionTypes.ts -------------------------------------------------------------------------------- /src/redux/actions/appErrorActions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/redux/actions/appErrorActions.test.ts -------------------------------------------------------------------------------- /src/redux/actions/appErrorActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/redux/actions/appErrorActions.ts -------------------------------------------------------------------------------- /src/redux/actions/applicationActions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/redux/actions/applicationActions.test.ts -------------------------------------------------------------------------------- /src/redux/actions/applicationActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/redux/actions/applicationActions.ts -------------------------------------------------------------------------------- /src/redux/actions/connectionActions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/redux/actions/connectionActions.test.ts -------------------------------------------------------------------------------- /src/redux/actions/connectionActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/redux/actions/connectionActions.ts -------------------------------------------------------------------------------- /src/redux/actions/projectActions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/redux/actions/projectActions.test.ts -------------------------------------------------------------------------------- /src/redux/actions/projectActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/redux/actions/projectActions.ts -------------------------------------------------------------------------------- /src/redux/middleware/appInsights.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/redux/middleware/appInsights.test.ts -------------------------------------------------------------------------------- /src/redux/middleware/appInsights.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/redux/middleware/appInsights.ts -------------------------------------------------------------------------------- /src/redux/middleware/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/redux/middleware/localStorage.ts -------------------------------------------------------------------------------- /src/redux/reducers/appErrorReducer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/redux/reducers/appErrorReducer.test.ts -------------------------------------------------------------------------------- /src/redux/reducers/appErrorReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/redux/reducers/appErrorReducer.ts -------------------------------------------------------------------------------- /src/redux/reducers/applicationReducer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/redux/reducers/applicationReducer.test.ts -------------------------------------------------------------------------------- /src/redux/reducers/applicationReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/redux/reducers/applicationReducer.ts -------------------------------------------------------------------------------- /src/redux/reducers/connectionsReducer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/redux/reducers/connectionsReducer.test.ts -------------------------------------------------------------------------------- /src/redux/reducers/connectionsReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/redux/reducers/connectionsReducer.ts -------------------------------------------------------------------------------- /src/redux/reducers/currentProjectReducer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/redux/reducers/currentProjectReducer.test.ts -------------------------------------------------------------------------------- /src/redux/reducers/currentProjectReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/redux/reducers/currentProjectReducer.ts -------------------------------------------------------------------------------- /src/redux/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/redux/reducers/index.ts -------------------------------------------------------------------------------- /src/redux/reducers/recentProjectsReducer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/redux/reducers/recentProjectsReducer.test.ts -------------------------------------------------------------------------------- /src/redux/reducers/recentProjectsReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/redux/reducers/recentProjectsReducer.ts -------------------------------------------------------------------------------- /src/redux/store/initialState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/redux/store/initialState.ts -------------------------------------------------------------------------------- /src/redux/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/redux/store/store.ts -------------------------------------------------------------------------------- /src/registerMixins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/registerMixins.ts -------------------------------------------------------------------------------- /src/registerProviders.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/registerProviders.test.ts -------------------------------------------------------------------------------- /src/registerProviders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/registerProviders.ts -------------------------------------------------------------------------------- /src/registerToolbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/registerToolbar.ts -------------------------------------------------------------------------------- /src/serviceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/serviceWorker.ts -------------------------------------------------------------------------------- /src/services/activeLearningService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/services/activeLearningService.test.ts -------------------------------------------------------------------------------- /src/services/activeLearningService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/services/activeLearningService.ts -------------------------------------------------------------------------------- /src/services/assetService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/services/assetService.test.ts -------------------------------------------------------------------------------- /src/services/assetService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/services/assetService.ts -------------------------------------------------------------------------------- /src/services/connectionService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/services/connectionService.test.ts -------------------------------------------------------------------------------- /src/services/connectionService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/services/connectionService.ts -------------------------------------------------------------------------------- /src/services/importService.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/services/importService.test.tsx -------------------------------------------------------------------------------- /src/services/importService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/services/importService.ts -------------------------------------------------------------------------------- /src/services/projectService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/services/projectService.test.ts -------------------------------------------------------------------------------- /src/services/projectService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/services/projectService.ts -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/telemetry.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/telemetry.test.ts -------------------------------------------------------------------------------- /src/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/src/telemetry.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/tslint.json -------------------------------------------------------------------------------- /typings.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typings/react-jsonschema-form/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/VoTT/HEAD/typings/react-jsonschema-form/index.d.ts --------------------------------------------------------------------------------