@daypilot/daypilot-lite-javascript
Advanced tools
Comparing version 3.15.0 to 3.16.0
{ | ||
"name": "@daypilot/daypilot-lite-javascript", | ||
"version": "3.15.0", | ||
"version": "3.16.0", | ||
"description": "DayPilot Lite for JavaScript", | ||
@@ -5,0 +5,0 @@ "homepage": "https://javascript.daypilot.org/", |
@@ -21,3 +21,6 @@ # DayPilot Lite for JavaScript | ||
* Calendar/scheduler views: day, week, work week, month, resource calendar | ||
* Calendar/scheduler views: day, week, work week, month | ||
* Display a custom number of days (e.g. 4 days) | ||
* Resource calendar for scheduling multiple resources side by side (rooms, employees, tools, etc.) | ||
* Integrated helper for day/week/month switching (with date picker synchronization) | ||
* Event creation using drag and drop | ||
@@ -27,2 +30,5 @@ * Drag and drop event moving and resizing | ||
* Event duration bar with customizable color | ||
* Context menu | ||
* Built-in modal dialog for editing event details | ||
* Custom icons inside events with extended functionality (context menu, custom event handler) | ||
* Date picker with free/busy days highlighting, free-hand range selection, day cell customization | ||
@@ -34,2 +40,3 @@ * CSS themes (use theme builder to create your own theme) | ||
* TypeScript definitions | ||
* [Angular](https://www.npmjs.com/package/@daypilot/daypilot-lite-angular), [React](https://www.npmjs.com/package/@daypilot/daypilot-lite-react), and [Vue](https://www.npmjs.com/package/@daypilot/daypilot-lite-vue) packages available | ||
@@ -49,12 +56,42 @@ ## Tutorials | ||
[JavaScript Resource Calendar Tutorial - PHP/MySQL (Open-Source)](https://code.daypilot.org/87709/javascript-resource-calendar-tutorial-php-mysql) | ||
[JavaScript Resource Calendar Tutorial - PHP/MySQL (Open-Source)](https://code.daypilot.org/87709/javascript-resource-calendar-tutorial-php-mysql) | ||
The resource calendar displays custom resources (people, rooms, tools) as columns. This tutorial shows how to load resource data from a PHP/MySQL backend and show custom calendar columns. | ||
## HTML5/JavaScript Calendar with Day/Week/Month Views (PHP, MySQL) | ||
### HTML5/JavaScript Calendar with Day/Week/Month Views (PHP, MySQL) | ||
[](https://code.daypilot.org/27988/html5-calendar-with-day-week-month-views-javascript-php) | ||
[Open-Source HTML5/JavaScript Calendar with Day/Week/Month Views (PHP, MySQL)](https://code.daypilot.org/27988/html5-calendar-with-day-week-month-views-javascript-php) | ||
[Open-Source HTML5/JavaScript Calendar with Day/Week/Month Views (PHP, MySQL)](https://code.daypilot.org/27988/html5-calendar-with-day-week-month-views-javascript-php) | ||
HTML5/JavaScript event calendar with day, week, and month views and integrated date navigator. Includes a sample PHP backend with MySQL database. | ||
### ASP.NET Core Weekly Calendar | ||
[](https://code.daypilot.org/31735/javascript-weekly-calendar-asp-net-core) | ||
[ASP.NET Core Weekly Calendar (Open-Source)](https://code.daypilot.org/31735/javascript-weekly-calendar-asp-net-core) | ||
Simple ASP.NET Core web application that displays event data in a weekly calendar. Uses Entity Framework Core for data access. | ||
### ASP.NET Core Monthly Calendar | ||
[](https://code.daypilot.org/95109/html5-monthly-calendar-and-asp-net-core) | ||
[ASP.NET Core Monthly Calendar (Open-Source)](https://code.daypilot.org/31735/javascript-weekly-calendar-asp-net-core) | ||
ASP.NET Core web application that displays scheduled events in a monthly calendar. Visual Studio project for download. | ||
### Spring Boot Weekly Calendar | ||
[](https://code.daypilot.org/41760/using-javascript-html5-event-calendar-in-spring-boot-java) | ||
[Weekly Event Calendar in Spring Boot/Java (Open-Source)](https://code.daypilot.org/41760/using-javascript-html5-event-calendar-in-spring-boot-java) | ||
Create a Spring Boot scheduling application with a weekly HTML5/JavaScript calendar component. | ||
### Spring Boot Monthly Calendar | ||
[](https://code.daypilot.org/58614/using-javascript-html5-monthly-calendar-in-spring-boot-java) | ||
[Monthly Calendar in Spring Boot/Java (Open-Source)](https://code.daypilot.org/58614/using-javascript-html5-monthly-calendar-in-spring-boot-java) | ||
Spring Boot web application that displays a monthly calendar with drag and drop support. Implemented using JavaScript monthly calendar control from DayPilot package. | ||
## Example | ||
@@ -77,3 +114,3 @@ | ||
viewType: "Week", | ||
startDate: "2022-03-21", | ||
startDate: "2023-09-18", | ||
headerDateFormat: "d/M/yyyy", | ||
@@ -89,4 +126,4 @@ onEventMoved: args => { | ||
{ | ||
start: "2022-03-20T11:00:00", | ||
end: "2022-03-20T14:00:00", | ||
start: "2023-03-18T11:00:00", | ||
end: "2023-03-18T14:00:00", | ||
id: 1, | ||
@@ -97,4 +134,4 @@ text: "Event 1", | ||
{ | ||
start: "2022-03-21T11:00:00", | ||
end: "2022-03-21T14:00:00", | ||
start: "2023-03-19T11:00:00", | ||
end: "2023-03-19T14:00:00", | ||
id: 2, | ||
@@ -101,0 +138,0 @@ text: "Event 2", |
Sorry, the diff of this file is too big to display
283179
1029
155