├── .gitattributes ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .paket ├── Paket.Restore.targets ├── paket.bootstrapper.exe └── paket.targets ├── Angara.sln ├── Gruntfile.js ├── LICENSE.txt ├── README.md ├── RELEASE_NOTES.md ├── SECURITY.md ├── package.json ├── paket.dependencies ├── paket.lock ├── src ├── Angara.Base │ ├── Angara.Base.fsproj │ ├── AssemblyInfo.fs │ ├── Base.fs │ └── paket.references ├── Angara.Html.Sample │ ├── Angara.Html.Sample.fsproj │ ├── App.config │ ├── AssemblyInfo.fs │ ├── Console.fsx │ ├── Program.fs │ └── paket.references ├── Angara.Html │ ├── .gitignore │ ├── Angara.Html.fsproj │ ├── AssemblyInfo.fs │ ├── Html.fs │ ├── Html.fsi │ ├── RecordViewSerializer.fs │ ├── Resolver.fs │ ├── Scripts │ │ ├── Angara.Html.css │ │ ├── Angara.Show.ts │ │ ├── App.js │ │ ├── Main.js │ │ ├── Primitive.ts │ │ ├── Record.ts │ │ ├── Seq.ts │ │ ├── embeddableIndex.cshtml │ │ └── index.cshtml │ ├── console.html │ ├── console.js │ ├── paket.references │ └── prebuild.cmd └── Angara.Reinstate │ ├── Angara.Reinstate.fsproj │ ├── AssemblyInfo.fs │ ├── FolderBlobStorage.fs │ ├── FolderExportImport.fs │ ├── IExportImport.fs │ ├── IStreamExportImport.fs │ ├── InlineByteBlob.fs │ ├── JsonExporterImporter.fs │ ├── Persistence.fs │ └── paket.references ├── tests ├── Angara.Html.Tests │ ├── 1.ChAreaApproximated.csv │ ├── Angara.Html.Tests.fs │ ├── Angara.Html.Tests.fsproj │ ├── App.config │ └── paket.references └── Angara.Reinstate.Tests │ ├── Angara.Reinstate.Tests.fsproj │ ├── App.config │ ├── AssemblyInfo.fs │ ├── FsCheckAddin.fs │ ├── ReinstateTests.fs │ └── paket.references ├── tsd.json ├── typings ├── jquery │ └── jquery.d.ts ├── requirejs │ └── require.d.ts └── tsd.d.ts └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/.gitignore -------------------------------------------------------------------------------- /.paket/Paket.Restore.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/.paket/Paket.Restore.targets -------------------------------------------------------------------------------- /.paket/paket.bootstrapper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/.paket/paket.bootstrapper.exe -------------------------------------------------------------------------------- /.paket/paket.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/.paket/paket.targets -------------------------------------------------------------------------------- /Angara.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/Angara.sln -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/SECURITY.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/package.json -------------------------------------------------------------------------------- /paket.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/paket.dependencies -------------------------------------------------------------------------------- /paket.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/paket.lock -------------------------------------------------------------------------------- /src/Angara.Base/Angara.Base.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Base/Angara.Base.fsproj -------------------------------------------------------------------------------- /src/Angara.Base/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Base/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/Angara.Base/Base.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Base/Base.fs -------------------------------------------------------------------------------- /src/Angara.Base/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Base/paket.references -------------------------------------------------------------------------------- /src/Angara.Html.Sample/Angara.Html.Sample.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Html.Sample/Angara.Html.Sample.fsproj -------------------------------------------------------------------------------- /src/Angara.Html.Sample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Html.Sample/App.config -------------------------------------------------------------------------------- /src/Angara.Html.Sample/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Html.Sample/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/Angara.Html.Sample/Console.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Html.Sample/Console.fsx -------------------------------------------------------------------------------- /src/Angara.Html.Sample/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Html.Sample/Program.fs -------------------------------------------------------------------------------- /src/Angara.Html.Sample/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Html.Sample/paket.references -------------------------------------------------------------------------------- /src/Angara.Html/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Html/.gitignore -------------------------------------------------------------------------------- /src/Angara.Html/Angara.Html.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Html/Angara.Html.fsproj -------------------------------------------------------------------------------- /src/Angara.Html/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Html/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/Angara.Html/Html.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Html/Html.fs -------------------------------------------------------------------------------- /src/Angara.Html/Html.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Html/Html.fsi -------------------------------------------------------------------------------- /src/Angara.Html/RecordViewSerializer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Html/RecordViewSerializer.fs -------------------------------------------------------------------------------- /src/Angara.Html/Resolver.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Html/Resolver.fs -------------------------------------------------------------------------------- /src/Angara.Html/Scripts/Angara.Html.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Html/Scripts/Angara.Html.css -------------------------------------------------------------------------------- /src/Angara.Html/Scripts/Angara.Show.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Html/Scripts/Angara.Show.ts -------------------------------------------------------------------------------- /src/Angara.Html/Scripts/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Html/Scripts/App.js -------------------------------------------------------------------------------- /src/Angara.Html/Scripts/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Html/Scripts/Main.js -------------------------------------------------------------------------------- /src/Angara.Html/Scripts/Primitive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Html/Scripts/Primitive.ts -------------------------------------------------------------------------------- /src/Angara.Html/Scripts/Record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Html/Scripts/Record.ts -------------------------------------------------------------------------------- /src/Angara.Html/Scripts/Seq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Html/Scripts/Seq.ts -------------------------------------------------------------------------------- /src/Angara.Html/Scripts/embeddableIndex.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Html/Scripts/embeddableIndex.cshtml -------------------------------------------------------------------------------- /src/Angara.Html/Scripts/index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Html/Scripts/index.cshtml -------------------------------------------------------------------------------- /src/Angara.Html/console.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Html/console.html -------------------------------------------------------------------------------- /src/Angara.Html/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Html/console.js -------------------------------------------------------------------------------- /src/Angara.Html/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Html/paket.references -------------------------------------------------------------------------------- /src/Angara.Html/prebuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Html/prebuild.cmd -------------------------------------------------------------------------------- /src/Angara.Reinstate/Angara.Reinstate.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Reinstate/Angara.Reinstate.fsproj -------------------------------------------------------------------------------- /src/Angara.Reinstate/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Reinstate/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/Angara.Reinstate/FolderBlobStorage.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Reinstate/FolderBlobStorage.fs -------------------------------------------------------------------------------- /src/Angara.Reinstate/FolderExportImport.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Reinstate/FolderExportImport.fs -------------------------------------------------------------------------------- /src/Angara.Reinstate/IExportImport.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Reinstate/IExportImport.fs -------------------------------------------------------------------------------- /src/Angara.Reinstate/IStreamExportImport.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Reinstate/IStreamExportImport.fs -------------------------------------------------------------------------------- /src/Angara.Reinstate/InlineByteBlob.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Reinstate/InlineByteBlob.fs -------------------------------------------------------------------------------- /src/Angara.Reinstate/JsonExporterImporter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Reinstate/JsonExporterImporter.fs -------------------------------------------------------------------------------- /src/Angara.Reinstate/Persistence.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Reinstate/Persistence.fs -------------------------------------------------------------------------------- /src/Angara.Reinstate/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/src/Angara.Reinstate/paket.references -------------------------------------------------------------------------------- /tests/Angara.Html.Tests/1.ChAreaApproximated.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/tests/Angara.Html.Tests/1.ChAreaApproximated.csv -------------------------------------------------------------------------------- /tests/Angara.Html.Tests/Angara.Html.Tests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/tests/Angara.Html.Tests/Angara.Html.Tests.fs -------------------------------------------------------------------------------- /tests/Angara.Html.Tests/Angara.Html.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/tests/Angara.Html.Tests/Angara.Html.Tests.fsproj -------------------------------------------------------------------------------- /tests/Angara.Html.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/tests/Angara.Html.Tests/App.config -------------------------------------------------------------------------------- /tests/Angara.Html.Tests/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/tests/Angara.Html.Tests/paket.references -------------------------------------------------------------------------------- /tests/Angara.Reinstate.Tests/Angara.Reinstate.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/tests/Angara.Reinstate.Tests/Angara.Reinstate.Tests.fsproj -------------------------------------------------------------------------------- /tests/Angara.Reinstate.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/tests/Angara.Reinstate.Tests/App.config -------------------------------------------------------------------------------- /tests/Angara.Reinstate.Tests/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/tests/Angara.Reinstate.Tests/AssemblyInfo.fs -------------------------------------------------------------------------------- /tests/Angara.Reinstate.Tests/FsCheckAddin.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/tests/Angara.Reinstate.Tests/FsCheckAddin.fs -------------------------------------------------------------------------------- /tests/Angara.Reinstate.Tests/ReinstateTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/tests/Angara.Reinstate.Tests/ReinstateTests.fs -------------------------------------------------------------------------------- /tests/Angara.Reinstate.Tests/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/tests/Angara.Reinstate.Tests/paket.references -------------------------------------------------------------------------------- /tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/tsd.json -------------------------------------------------------------------------------- /typings/jquery/jquery.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/typings/jquery/jquery.d.ts -------------------------------------------------------------------------------- /typings/requirejs/require.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/typings/requirejs/require.d.ts -------------------------------------------------------------------------------- /typings/tsd.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/typings/tsd.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Angara/HEAD/yarn.lock --------------------------------------------------------------------------------