toast_ui.blazor_calendar 1.0.0-beta1.1.59

This is a prerelease version of toast_ui.blazor_calendar.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package toast_ui.blazor_calendar --version 1.0.0-beta1.1.59
NuGet\Install-Package toast_ui.blazor_calendar -Version 1.0.0-beta1.1.59
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="toast_ui.blazor_calendar" Version="1.0.0-beta1.1.59" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add toast_ui.blazor_calendar --version 1.0.0-beta1.1.59
#r "nuget: toast_ui.blazor_calendar, 1.0.0-beta1.1.59"
#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 toast_ui.blazor_calendar as a Cake Addin
#addin nuget:?package=toast_ui.blazor_calendar&version=1.0.0-beta1.1.59&prerelease

// Install toast_ui.blazor_calendar as a Cake Tool
#tool nuget:?package=toast_ui.blazor_calendar&version=1.0.0-beta1.1.59&prerelease

toast_ui.blazor_calendar

A Toast UI Calendar Wrapper For Blazor
Drag-And-Drop Events, Tasks, and Scheduling

NuGet NuGetPre DLs Issues license stars


Sample

See Toast UI Calendar for details: https://github.com/nhn/tui.calendar
Toast UI Calendar Site: https://ui.toast.com/tui-calendar

Pre-Release BETA now available on Nuget.

Please visit Disucssions for any questions or comments or open an issue for any bugs found.

How to start:

Nuget Pre-release:
Install-Package toast_ui.blazor_calendar -Version 1.0.0-beta3.1

Edit your project files:

In _Imports.razor

add:

@using toast_ui.blazor_calendar
In _Host.cshtml

add this inside the <head>

<link href="_content/toast_ui.blazor_calendar/TUI.blazorCalendar.css" rel="stylesheet">

add this inside the <body> near the bottom

<script src="_content/toast_ui.blazor_calendar/TUI.blazor_calendar.min.js"></script> 
Place the Component in a razor file (See Test Project)
<TUICalendar Schedules="ViewModel.Schedules" 
             CalendarOptions="ViewModel.CalendarOptions" 
             CalendarProperties="ViewModel.CalendarProps"
             CalendarViewName="ViewModel.CalendarViewName"
             @bind-VisibleStartDateRange="ViewModel.StartDate"
             @bind-VisibleEndDateRange="ViewModel.EndDate"
             OnChangeCalendarEventOrTask="@(async (x) => await ViewModel.OnChangeCalendarEventOrTask(x))"
             OnClickCalendarEventOrTask="@(async (x) => await ViewModel.OnClickCalendarEventOrTask(x))"
             OnCreateCalendarEventOrTask="@(async (x) => await ViewModel.OnCreateCalendarEventOrTask(x))"
             OnDeleteCalendarEventOrTask="@(async (x) => await ViewModel.OnDeleteCalendarEventOrTask(x))"
             @ref=_calendarRef></TUICalendar>

Contributing

Create and/or make a pull request on the dev branch.

WAAAYYY More To Come... Help Welcomed

I am attempting to implement a simple CalDav Server and Client to make a better example of the calendar component. CalDavSharp

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
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
1.0.0-beta3.1 3,157 6/11/2022
1.0.0-beta3.0 263 5/3/2022
1.0.0-beta2.3 567 4/11/2022
1.0.0-beta2.2 133 3/31/2022
1.0.0-beta2.1 156 3/11/2022
1.0.0-beta2.0 123 3/8/2022
1.0.0-beta1.4 319 12/20/2021
1.0.0-beta1.3 265 10/26/2021
1.0.0-beta1.2 199 10/2/2021
1.0.0-beta1.1.59 205 7/17/2022
1.0.0-beta1.1 1,010 4/23/2021
1.0.0-beta1 166 4/23/2021
1.0.0-alpha6 164 4/22/2021
1.0.0-alpha5 157 4/21/2021
1.0.0-alpha4 250 4/19/2021
1.0.0-alpha3 243 4/19/2021
1.0.0-alpha2 202 4/19/2021
1.0.0-alpha1 225 4/18/2021

Initial beta release. Visit the GitHub repo for examples and sample project. Post any issues. All dates are stored in UTC time, but rendered in your local time based on browser.