gitextract_vl_x46wx/ ├── .gitattributes ├── .github/ │ └── workflows/ │ ├── deploy.yml │ ├── opened-issues-triage.yml │ └── test.yml ├── .gitignore ├── .gitmodules ├── .prettierignore ├── .prettierrc.json ├── .vscode/ │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── CHANGELOG.md ├── LICENSE.md ├── NOTES.md ├── README.md ├── docs/ │ ├── code-link.md │ └── plugins.md ├── drawio-custom-plugins/ │ ├── src/ │ │ ├── drawio-types.d.ts │ │ ├── focus.ts │ │ ├── index.ts │ │ ├── linkSelectedNodeWithData.ts │ │ ├── liveshare.ts │ │ ├── menu-entries.ts │ │ ├── propertiesDialog.ts │ │ ├── styles.css │ │ ├── types.d.ts │ │ └── vscode.ts │ ├── tsconfig.json │ └── webpack.config.ts ├── examples/ │ ├── .vscode/ │ │ └── settings.json │ ├── formats/ │ │ └── README.md │ ├── linking/ │ │ ├── demo-src/ │ │ │ ├── Baz.ts │ │ │ ├── Foo.ts │ │ │ ├── test.cc │ │ │ └── tsconfig.json │ │ └── main.dio │ ├── temp/ │ │ ├── Example.drawio │ │ ├── Large.drawio │ │ └── TestLibrary.xml │ ├── tooltips-plugin.js │ └── use-cases/ │ ├── class-diagrams.dio │ ├── cloud-architecture.drawio │ ├── packages.dio │ ├── screenshots.dio │ └── wireframes.dio ├── package.json ├── scripts/ │ ├── build-and-publish.ts │ ├── changelog.ts │ ├── run-script.js │ └── tsconfig.json ├── src/ │ ├── Config.ts │ ├── DrawioClient/ │ │ ├── CustomizedDrawioClient.ts │ │ ├── DrawioClient.ts │ │ ├── DrawioClientFactory.ts │ │ ├── DrawioTypes.ts │ │ ├── html.d.ts │ │ ├── index.ts │ │ ├── simpleDrawioLibrary.ts │ │ └── webview-content.html │ ├── DrawioEditorProviderBinary.ts │ ├── DrawioEditorProviderText.ts │ ├── DrawioEditorService.ts │ ├── DrawioExtensionApi.ts │ ├── Extension.ts │ ├── features/ │ │ ├── CodeLinkFeature.ts │ │ ├── EditDiagramAsTextFeature.ts │ │ └── LiveshareFeature/ │ │ ├── CurrentViewState.ts │ │ ├── LiveshareFeature.ts │ │ ├── LiveshareSession.ts │ │ ├── SessionModel.ts │ │ ├── assets/ │ │ │ └── package.json │ │ └── index.ts │ ├── index.ts │ ├── types.d.ts │ ├── utils/ │ │ ├── SimpleTemplate.ts │ │ ├── autorunTrackDisposables.ts │ │ ├── buffer.ts │ │ ├── formatValue.ts │ │ ├── fromResource.ts │ │ ├── groupBy.ts │ │ ├── mapObject.ts │ │ ├── path.ts │ │ └── registerFailableCommand.ts │ └── vscode-utils/ │ ├── VirtualFileSystemProvider.ts │ └── VsCodeSetting.ts ├── tsconfig.json ├── tslint.json └── webpack.config.ts