@event-calendar/build 3.6.0 → 3.6.2
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 +5 -5
- package/event-calendar.min.js +2 -2
- package/event-calendar.min.js.map +1 -1
- package/package.json +7 -7
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 & timeline views:
|
|
6
6
|
|
|
7
|
-
* Lightweight (
|
|
7
|
+
* Lightweight (36kb [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
|
|
|
@@ -12,7 +12,7 @@ Inspired by [FullCalendar](https://fullcalendar.io/), implements similar options
|
|
|
12
12
|
|
|
13
13
|
## Table of contents
|
|
14
14
|
- [Usage](#usage)
|
|
15
|
-
- [
|
|
15
|
+
- [JavaScript module / Svelte component](#javascript-module--svelte-component)
|
|
16
16
|
- [Pre-built browser ready bundle](#pre-built-browser-ready-bundle)
|
|
17
17
|
- [Modifying options after initialization](#modifying-options-after-initialization)
|
|
18
18
|
- [Options](#options)
|
|
@@ -144,7 +144,7 @@ Inspired by [FullCalendar](https://fullcalendar.io/), implements similar options
|
|
|
144
144
|
- [Browser support](#browser-support)
|
|
145
145
|
|
|
146
146
|
## Usage
|
|
147
|
-
###
|
|
147
|
+
### JavaScript module / Svelte component
|
|
148
148
|
The first step is to install the Event Calendar `core` package:
|
|
149
149
|
```bash
|
|
150
150
|
npm install --save-dev @event-calendar/core
|
|
@@ -203,8 +203,8 @@ Or in your Svelte component, use the calendar like this:
|
|
|
203
203
|
### Pre-built browser ready bundle
|
|
204
204
|
Include the following lines of code in the `<head>` section of your page:
|
|
205
205
|
```html
|
|
206
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@3.6.
|
|
207
|
-
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@3.6.
|
|
206
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@3.6.2/event-calendar.min.css">
|
|
207
|
+
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@3.6.2/event-calendar.min.js"></script>
|
|
208
208
|
```
|
|
209
209
|
|
|
210
210
|
<details>
|