@event-calendar/build 2.6.0 → 2.6.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 +24 -4
- package/event-calendar.min.js +2 -2
- package/event-calendar.min.js.map +1 -1
- package/package.json +6 -6
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 (
|
|
7
|
+
* Lightweight (33kb [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
|
|
|
@@ -199,8 +199,8 @@ import '@event-calendar/core/index.css';
|
|
|
199
199
|
### Pre-built browser ready bundle
|
|
200
200
|
Include the following lines of code in the `<head>` section of your page:
|
|
201
201
|
```html
|
|
202
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@2.6.
|
|
203
|
-
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@2.6.
|
|
202
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@2.6.1/event-calendar.min.css">
|
|
203
|
+
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@2.6.1/event-calendar.min.js"></script>
|
|
204
204
|
```
|
|
205
205
|
|
|
206
206
|
<details>
|
|
@@ -1288,7 +1288,27 @@ This option is used instead of the `events` option.
|
|
|
1288
1288
|
</td>
|
|
1289
1289
|
<td>
|
|
1290
1290
|
|
|
1291
|
-
A URL that the calendar will fetch [Event](#event-object) objects from
|
|
1291
|
+
A URL that the calendar will fetch [Event](#event-object) objects from. HTTP requests with the following parameters will be sent to this URL whenever the calendar needs new event data
|
|
1292
|
+
<table>
|
|
1293
|
+
<tr>
|
|
1294
|
+
<td>
|
|
1295
|
+
|
|
1296
|
+
`start`
|
|
1297
|
+
</td>
|
|
1298
|
+
<td>
|
|
1299
|
+
Start date of the range the calendar needs events for
|
|
1300
|
+
</td>
|
|
1301
|
+
</tr>
|
|
1302
|
+
<tr>
|
|
1303
|
+
<td>
|
|
1304
|
+
|
|
1305
|
+
`end`
|
|
1306
|
+
</td>
|
|
1307
|
+
<td>
|
|
1308
|
+
End date of the range the calendar needs events for
|
|
1309
|
+
</td>
|
|
1310
|
+
</tr>
|
|
1311
|
+
</table>
|
|
1292
1312
|
</td>
|
|
1293
1313
|
</tr>
|
|
1294
1314
|
<tr>
|