Alpine.TagHelpers
0.2.0
dotnet add package Alpine.TagHelpers --version 0.2.0
NuGet\Install-Package Alpine.TagHelpers -Version 0.2.0
<PackageReference Include="Alpine.TagHelpers" Version="0.2.0" />
paket add Alpine.TagHelpers --version 0.2.0
#r "nuget: Alpine.TagHelpers, 0.2.0"
// Install Alpine.TagHelpers as a Cake Addin #addin nuget:?package=Alpine.TagHelpers&version=0.2.0 // Install Alpine.TagHelpers as a Cake Tool #tool nuget:?package=Alpine.TagHelpers&version=0.2.0
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 Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.1 is compatible. |
-
.NETCoreApp 3.1
- Newtonsoft.Json (>= 13.0.2)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Alpine.TagHelpers:
Package | Downloads |
---|---|
Pines.TagHelpers
Adds ASP.NET Core tag helpers to make use of the Pines Alpine.js + Tailwind CSS UI components library. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.2.0 | 844 | 2/3/2024 |
0.1.0 | 1,623 | 1/16/2023 |
0.0.0-alpha.0 | 94 | 1/16/2023 |