Alpine.TagHelpers 0.0.0-alpha.0

.NET Core 3.1
This is a prerelease version of Alpine.TagHelpers.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Alpine.TagHelpers --version 0.0.0-alpha.0
NuGet\Install-Package Alpine.TagHelpers -Version 0.0.0-alpha.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Alpine.TagHelpers" Version="0.0.0-alpha.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Alpine.TagHelpers --version 0.0.0-alpha.0
#r "nuget: Alpine.TagHelpers, 0.0.0-alpha.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Alpine.TagHelpers as a Cake Addin
#addin nuget:?package=Alpine.TagHelpers&version=0.0.0-alpha.0&prerelease

// Install Alpine.TagHelpers as a Cake Tool
#tool nuget:?package=Alpine.TagHelpers&version=0.0.0-alpha.0&prerelease

Alpine.TagHelpers

Alpine.js Tag Helper for ASP.NET Core Razor Views.

Installation

dotnet add package Alpine.TagHelpers

Usage

alpine-data Tag Helper

Renders a .NET object as JavaScript (not JSON) object inside the Alpine x-data attribute.

Register the Tag Helpers in _ViewImports.cshtml

@addTagHelper *, Alpine.TagHelpers

Use the alpine-data Tag Helper:

<div alpine-data="new { Open = false }">
  <button x-on:click="open = !open">Show</button>
  <div x-show="open" x-cloak>Some details...</div>
</div>

Result:

<div x-data="{open:false}">
  <button x-on:click="open = !open">Show</button>
  <div x-show="open">Some details...</div>
</div>

Samples

Samples can be found inside the samples folder.

License

MIT License

Copyright (c) 2023 Alexander Zeitler

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Product Versions
.NET net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Core netcoreapp3.1
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.1.0 184 1/16/2023
0.0.0-alpha.0 47 1/16/2023