├── .config └── dotnet-tools.json ├── .github ├── dependabot.yml └── workflows │ ├── build-and-test.yml │ ├── conventional-pr-title.yml │ └── release-please.yml ├── .gitignore ├── .paket └── Paket.Restore.targets ├── .release-please-manifest.json ├── CHANGELOG.md ├── CLAUDE.md ├── Feliz.Bulma.ViewEngine ├── Bulma.fs ├── ElementBuilders.fs ├── Feliz.Bulma.ViewEngine.fsproj ├── LICENSE ├── Modifiers.fs ├── Operators.fs ├── PropertyBuilders.fs └── paket.references ├── Feliz.ViewEngine.sln ├── LICENSE ├── LICENSE.Apache-2.0 ├── LICENSE.MIT ├── README.md ├── benchmarks ├── Benchmarks.fsproj ├── HtmlBenchmarks.fs └── Program.fs ├── examples └── giraffe │ ├── Program.fs │ ├── README.md │ ├── build.bat │ ├── build.sh │ └── giraffe.fsproj ├── justfile ├── nuget-packages ├── Feliz.Bulma.ViewEngine.0.26.0.nupkg └── Feliz.ViewEngine.0.26.0.nupkg ├── paket.dependencies ├── paket.lock ├── release-please-config.json ├── src ├── Colors.fs ├── Feliz.ViewEngine.fsproj ├── Fonts.fs ├── Html.fs ├── Interop.fs ├── Properties.fs ├── React.fs ├── StyleTypes.fs ├── Styles.fs ├── TextDecorationLine.fs ├── TextDecorationStyle.fs ├── ViewEngine.fs └── paket.references └── test ├── Bulma.ViewEngineTest.fs ├── Program.fs ├── Tests.Feliz.ViewEngine.fsproj ├── ViewEngineTest.fs └── paket.references /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/.github/workflows/build-and-test.yml -------------------------------------------------------------------------------- /.github/workflows/conventional-pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/.github/workflows/conventional-pr-title.yml -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/.gitignore -------------------------------------------------------------------------------- /.paket/Paket.Restore.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/.paket/Paket.Restore.targets -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "1.0.3" 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /Feliz.Bulma.ViewEngine/Bulma.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/Feliz.Bulma.ViewEngine/Bulma.fs -------------------------------------------------------------------------------- /Feliz.Bulma.ViewEngine/ElementBuilders.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/Feliz.Bulma.ViewEngine/ElementBuilders.fs -------------------------------------------------------------------------------- /Feliz.Bulma.ViewEngine/Feliz.Bulma.ViewEngine.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/Feliz.Bulma.ViewEngine/Feliz.Bulma.ViewEngine.fsproj -------------------------------------------------------------------------------- /Feliz.Bulma.ViewEngine/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/Feliz.Bulma.ViewEngine/LICENSE -------------------------------------------------------------------------------- /Feliz.Bulma.ViewEngine/Modifiers.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/Feliz.Bulma.ViewEngine/Modifiers.fs -------------------------------------------------------------------------------- /Feliz.Bulma.ViewEngine/Operators.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/Feliz.Bulma.ViewEngine/Operators.fs -------------------------------------------------------------------------------- /Feliz.Bulma.ViewEngine/PropertyBuilders.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/Feliz.Bulma.ViewEngine/PropertyBuilders.fs -------------------------------------------------------------------------------- /Feliz.Bulma.ViewEngine/paket.references: -------------------------------------------------------------------------------- 1 | group Bulma 2 | 3 | FSharp.Core 4 | Feliz.ViewEngine 5 | -------------------------------------------------------------------------------- /Feliz.ViewEngine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/Feliz.ViewEngine.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.Apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/LICENSE.Apache-2.0 -------------------------------------------------------------------------------- /LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/LICENSE.MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/Benchmarks.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/benchmarks/Benchmarks.fsproj -------------------------------------------------------------------------------- /benchmarks/HtmlBenchmarks.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/benchmarks/HtmlBenchmarks.fs -------------------------------------------------------------------------------- /benchmarks/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/benchmarks/Program.fs -------------------------------------------------------------------------------- /examples/giraffe/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/examples/giraffe/Program.fs -------------------------------------------------------------------------------- /examples/giraffe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/examples/giraffe/README.md -------------------------------------------------------------------------------- /examples/giraffe/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/examples/giraffe/build.bat -------------------------------------------------------------------------------- /examples/giraffe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/examples/giraffe/build.sh -------------------------------------------------------------------------------- /examples/giraffe/giraffe.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/examples/giraffe/giraffe.fsproj -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/justfile -------------------------------------------------------------------------------- /nuget-packages/Feliz.Bulma.ViewEngine.0.26.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/nuget-packages/Feliz.Bulma.ViewEngine.0.26.0.nupkg -------------------------------------------------------------------------------- /nuget-packages/Feliz.ViewEngine.0.26.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/nuget-packages/Feliz.ViewEngine.0.26.0.nupkg -------------------------------------------------------------------------------- /paket.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/paket.dependencies -------------------------------------------------------------------------------- /paket.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/paket.lock -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/release-please-config.json -------------------------------------------------------------------------------- /src/Colors.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/src/Colors.fs -------------------------------------------------------------------------------- /src/Feliz.ViewEngine.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/src/Feliz.ViewEngine.fsproj -------------------------------------------------------------------------------- /src/Fonts.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/src/Fonts.fs -------------------------------------------------------------------------------- /src/Html.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/src/Html.fs -------------------------------------------------------------------------------- /src/Interop.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/src/Interop.fs -------------------------------------------------------------------------------- /src/Properties.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/src/Properties.fs -------------------------------------------------------------------------------- /src/React.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/src/React.fs -------------------------------------------------------------------------------- /src/StyleTypes.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/src/StyleTypes.fs -------------------------------------------------------------------------------- /src/Styles.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/src/Styles.fs -------------------------------------------------------------------------------- /src/TextDecorationLine.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/src/TextDecorationLine.fs -------------------------------------------------------------------------------- /src/TextDecorationStyle.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/src/TextDecorationStyle.fs -------------------------------------------------------------------------------- /src/ViewEngine.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/src/ViewEngine.fs -------------------------------------------------------------------------------- /src/paket.references: -------------------------------------------------------------------------------- 1 | group Main 2 | 3 | Fsharp.Core 4 | -------------------------------------------------------------------------------- /test/Bulma.ViewEngineTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/test/Bulma.ViewEngineTest.fs -------------------------------------------------------------------------------- /test/Program.fs: -------------------------------------------------------------------------------- 1 | module Program = let [] main _ = 0 2 | -------------------------------------------------------------------------------- /test/Tests.Feliz.ViewEngine.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/test/Tests.Feliz.ViewEngine.fsproj -------------------------------------------------------------------------------- /test/ViewEngineTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/test/ViewEngineTest.fs -------------------------------------------------------------------------------- /test/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrattli/Feliz.ViewEngine/HEAD/test/paket.references --------------------------------------------------------------------------------