[!NOTE]
Forked from Vanilla-Calendar-Pro
This is a fork of the Vanilla-Calendar-Pro project with a few differences as described below (see Changes vs Original project). The hope would be to switch back to the original project once all these changes are merged into the original library.
- now merged into original project
- add new
jumpToSelectedDate
to automatically jump the calendar to the selected date. - add new
toggleSelected
to prevent date from being unselected (clicking twice). - add new
sanitizer
callback option for CSP compliance. - allow passing
today
as min/max date. - allow supplying
Date
and/or epoch timestamp (number
) in addition to ISO date strings. - add new
auto
option topositionToInput
to automatically position picker with available space. - add new
selectedDates.edgesOnly
to only return start/end dates of date range
- add new
- not yet in original project
- add new
changeSetting()
function to be able to change a single setting (I might remove this one, not using it myself) - add Type descriptions for better intelliSense
- add new
VanillaCalendar is a versatile JavaScript date and time picker with TypeScript support, making it compatible with any JavaScript framework or library. It is designed to be lightweight, simple to use, and feature-rich without relying on external dependencies.
- Lightweight: The final minified .js file is only approximately 37.3 KB, and with gzip compression, it's just around 9.9 KB.
- No Dependencies: VanillaCalendar is entirely self-contained, ensuring you don't need to include additional libraries.
- Simple Localization: Supports simple localization for any language.
- Customizable: Can be easily configured using CSS and HTML markup.
- Multiple Instances: Allows for an unlimited number of calendar instances on a single page.
- Theme Support: Includes two themes - the light theme and the dark theme.
- Week Start Customization: Supports both Sunday and Monday as the beginning of the week.
- Week Number Display: Can display week numbers throughout the year.
-
Not Tied to Input Tags: Unlike many date pickers, it's not limited to the
<input>
tag.
VanillaCalendar is compatible with a wide range of browsers:
57+ ✔ | 52+ ✔ | 80+ ✔ | 44+ ✔ | 10.1+ ✔ |
This plugin is completely free, and your support is important. Please feel free to report any issues or share your new ideas; it's really important!
If you like VanillaCalendar, please consider giving it a 🌟 star on GitHub.
You can install VanillaCalendar using npm or yarn:
npm install vanilla-calendar-picker
# or
yarn add vanilla-calendar-picker
If you prefer not to use a package manager, you can also include it via CDN or download it from the website.
Here's a simple example of how to use VanillaCalendar in your HTML:
<html>
<head>
</head>
<body>
<div id="calendar"></div>
<!-- or -->
<!-- <input type="text" id="calendar-input"> -->
</body>
</html>
To add the necessary styles and scripts, you can use the following code:
import { VanillaCalendar } from 'vanilla-calendar-picker';
import 'vanilla-calendar-picker/build/vanilla-calendar.min.css';
// Initialize the calendar
const calendar = new VanillaCalendar('#calendar');
calendar.init();
// or
// const calendarWithInput = new VanillaCalendar('#calendar-input', { input: true });
// calendarWithInput.init();
If you're not using a package manager and prefer manual installation or CDN usage, you can include the necessary files in your HTML document's <head>
:
<html>
<head>
<link href="./vanilla-calendar.min.css" rel="stylesheet">
<script src="./vanilla-calendar.min.js" defer></script>
</head>
<body>
<div id="calendar"></div>
<script>
document.addEventListener('DOMContentLoaded', () => {
const calendar = new VanillaCalendar('#calendar');
calendar.init();
});
</script>
</body>
</html>
// Only layout calendar
import 'vanilla-calendar-picker/build/vanilla-calendar.layout.min.css';
// Themes
import 'vanilla-calendar-picker/build/themes/light.min.css';
import 'vanilla-calendar-picker/build/themes/dark.min.css';
VanillaCalendar includes two CSS themes: the light theme and the dark theme.
- The vanilla-calendar.min.css file contains all styles with all themes.
- The vanilla-calendar.layout.min.css file contains the essential structural styles for the calendar.
- The themes/light.min.css theme provides a light color scheme.
- The themes/dark.min.css theme offers a dark color scheme.
The calendar will automatically display the theme according to the user's system preferences. If you want to apply a specific theme, it is recommended to import «vanilla-calendar.layout.min.css» along with the theme you prefer: «light.min.css» or «dark.min.css», instead of «vanilla-calendar.min.css».
VanillaCalendar features customizable DOM templates that allow you to modify the structure of the calendar to fit your needs. The templates are identified by tags containing the # character, and they should include a trailing slash at the end.
Here's an example of the default template:
new VanillaCalendar('#calendar', {
DOMTemplates: {
default: `
<div class="vanilla-calendar-header">
<#ArrowPrev />
<div class="vanilla-calendar-header__content">
<#Month />
<#Year />
</div>
<#ArrowNext />
</div>
<div class="vanilla-calendar-wrapper">
<#WeekNumbers />
<div class "vanilla-calendar-content">
<#Week />
<#Days />
</div>
</div>
<#ControlTime />
`
}
});
For detailed instructions on using VanillaCalendar in a React component with TypeScript, please visit the website for comprehensive documentation and examples.
For detailed information on the available parameters and settings, please refer to the API reference.
This project is tested with BrowserStack.
MIT License
Yury Uvarov (uvarov.frontend@gmail.com)