@event-calendar/build 2.5.0 → 2.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -4,7 +4,7 @@ See [demo](https://vkurko.github.io/calendar/) and [changelog](CHANGELOG.md).
4
4
 
5
5
  Full-sized drag & drop JavaScript event calendar with resource view:
6
6
 
7
- * Lightweight (31kb [br](https://en.wikipedia.org/wiki/Brotli) compressed)
7
+ * Lightweight (32kb [br](https://en.wikipedia.org/wiki/Brotli) compressed)
8
8
  * Zero-dependency (pre-built bundle)
9
9
  * Used on over 70,000 websites with [Bookly](https://wordpress.org/plugins/bookly-responsive-appointment-booking-tool/)
10
10
 
@@ -27,6 +27,7 @@ Inspired by [FullCalendar](https://fullcalendar.io/), implements similar options
27
27
  - [datesAboveResources](#datesaboveresources)
28
28
  - [datesSet](#datesset)
29
29
  - [dayCellFormat](#daycellformat)
30
+ - [dayHeaderAriaLabelFormat](#dayheaderarialabelformat)
30
31
  - [dayHeaderFormat](#dayheaderformat)
31
32
  - [dayMaxEvents](#daymaxevents)
32
33
  - [dayPopoverFormat](#daypopoverformat)
@@ -197,8 +198,8 @@ import '@event-calendar/core/index.css';
197
198
  ### Pre-built browser ready bundle
198
199
  Include the following lines of code in the `<head>` section of your page:
199
200
  ```html
200
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@2.5.0/event-calendar.min.css">
201
- <script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@2.5.0/event-calendar.min.js"></script>
201
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@2.5.1/event-calendar.min.css">
202
+ <script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@2.5.1/event-calendar.min.js"></script>
202
203
  ```
203
204
 
204
205
  <details>