@event-calendar/core 3.0.0 → 3.0.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 +3 -3
- package/index.css +3 -0
- package/package.json +1 -1
- package/src/styles/timeline.scss +3 -0
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 (34kb [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
|
|
|
@@ -202,8 +202,8 @@ import '@event-calendar/core/index.css';
|
|
|
202
202
|
### Pre-built browser ready bundle
|
|
203
203
|
Include the following lines of code in the `<head>` section of your page:
|
|
204
204
|
```html
|
|
205
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@3.0.
|
|
206
|
-
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@3.0.
|
|
205
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@3.0.1/event-calendar.min.css">
|
|
206
|
+
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@3.0.1/event-calendar.min.js"></script>
|
|
207
207
|
```
|
|
208
208
|
|
|
209
209
|
<details>
|
package/index.css
CHANGED
|
@@ -117,6 +117,9 @@
|
|
|
117
117
|
.ec-timeline .ec-time {
|
|
118
118
|
border-left: 1px solid var(--ec-border-color);
|
|
119
119
|
box-sizing: border-box;
|
|
120
|
+
min-height: 24px;
|
|
121
|
+
overflow: hidden;
|
|
122
|
+
text-overflow: ellipsis;
|
|
120
123
|
}
|
|
121
124
|
.ec-timeline .ec-time, .ec-timeline .ec-line {
|
|
122
125
|
width: 52px;
|
package/package.json
CHANGED