@event-calendar/resource-time-grid
Advanced tools
Comparing version 0.12.0 to 0.13.0
22
index.js
@@ -89,3 +89,3 @@ import { SvelteComponent, init, safe_not_equal, create_component, space, mount_component, insert, transition_in, group_outros, transition_out, check_outros, destroy_component, detach, component_subscribe, set_store_value, empty, destroy_each, element, text, attr, append, set_data } from 'svelte/internal'; | ||
// (31:3) {#if loops[1].length > 1} | ||
// (31:12) {#if loops[1].length > 1} | ||
function create_if_block_2(ctx) { | ||
@@ -153,3 +153,3 @@ let div; | ||
// (33:5) {#each loops[1] as item1} | ||
// (33:20) {#each loops[1] as item1} | ||
function create_each_block_6(ctx) { | ||
@@ -184,3 +184,3 @@ let div; | ||
// (28:1) {#each loops[0] as item0} | ||
// (28:4) {#each loops[0] as item0} | ||
function create_each_block_5(ctx) { | ||
@@ -348,3 +348,3 @@ let div1; | ||
// (51:2) {:else} | ||
// (51:8) {:else} | ||
function create_else_block(ctx) { | ||
@@ -433,3 +433,3 @@ let each_1_anchor; | ||
// (43:2) {#if $datesAboveResources} | ||
// (43:8) {#if $datesAboveResources} | ||
function create_if_block_1(ctx) { | ||
@@ -518,3 +518,3 @@ let each_1_anchor; | ||
// (52:3) {#each $_viewResources as resource} | ||
// (52:12) {#each $_viewResources as resource} | ||
function create_each_block_4(ctx) { | ||
@@ -573,3 +573,3 @@ let div; | ||
// (46:5) {#each $_viewResources as resource} | ||
// (46:20) {#each $_viewResources as resource} | ||
function create_each_block_3(ctx) { | ||
@@ -615,3 +615,3 @@ let week; | ||
// (44:3) {#each $_viewDates as date} | ||
// (44:12) {#each $_viewDates as date} | ||
function create_each_block_2(ctx) { | ||
@@ -711,3 +711,3 @@ let div; | ||
// (42:1) <Header allDay> | ||
// (42:4) <Header allDay> | ||
function create_default_slot_1(ctx) { | ||
@@ -782,3 +782,3 @@ let current_block_type_index; | ||
// (63:3) {#each loops[1] as item1} | ||
// (63:8) {#each loops[1] as item1} | ||
function create_each_block_1(ctx) { | ||
@@ -835,3 +835,3 @@ let day; | ||
// (61:1) {#each loops[0] as item0} | ||
// (61:0) {#each loops[0] as item0} | ||
function create_each_block(ctx) { | ||
@@ -838,0 +838,0 @@ let div; |
{ | ||
"name": "@event-calendar/resource-time-grid", | ||
"version": "0.12.0", | ||
"version": "0.13.0", | ||
"title": "Event Calendar ResourceTimeGrid plugin", | ||
@@ -36,5 +36,5 @@ "description": "Full-sized drag & drop event calendar with resource view", | ||
"dependencies": { | ||
"@event-calendar/time-grid": "~0.12.0", | ||
"@event-calendar/time-grid": "~0.13.0", | ||
"svelte": "^3.51.0" | ||
} | ||
} |
@@ -7,3 +7,3 @@ # Event Calendar [![](https://data.jsdelivr.com/v1/package/npm/@event-calendar/build/badge)](https://www.jsdelivr.com/package/npm/@event-calendar/build) [![npm](https://img.shields.io/npm/dm/@event-calendar/core?color=red&label=npm&style=flat-square)](https://www.npmjs.com/package/@event-calendar/core) [![Sponsor](https://img.shields.io/badge/Sponsor-$10-blue.svg?style=flat-square&logo=paypal)](https://www.paypal.me/vkurko/10usd) | ||
* Lightweight (52kb [br](https://en.wikipedia.org/wiki/Brotli) compressed `modern` version) | ||
* Lightweight (54kb [br](https://en.wikipedia.org/wiki/Brotli) compressed `modern` version) | ||
* Zero-dependency (pre-built bundle) | ||
@@ -46,6 +46,7 @@ * Used by [Bookly](https://wordpress.org/plugins/bookly-responsive-appointment-booking-tool/) | ||
- [eventDragStop](#eventdragstop) | ||
- [eventDrop](#eventdrop) | ||
</td><td> | ||
- [eventDrop](#eventdrop) | ||
- [eventDurationEditable](#eventdurationeditable) | ||
- [eventLongPressDelay](#eventlongpressdelay) | ||
- [eventMouseEnter](#eventmouseenter) | ||
@@ -71,2 +72,3 @@ - [eventMouseLeave](#eventmouseleave) | ||
- [locale](#locale) | ||
- [longPressDelay](#longpressdelay) | ||
- [monthMode](#monthmode) | ||
@@ -84,2 +86,3 @@ </td><td> | ||
- [selectBackgroundColor](#selectbackgroundcolor) | ||
- [selectLongPressDelay](#selectlongpressdelay) | ||
- [selectMinDistance](#selectmindistance) | ||
@@ -829,2 +832,10 @@ - [scrollTime](#scrolltime) | ||
### eventLongPressDelay | ||
- Type `integer` | ||
- Default `undefined` | ||
For touch devices, the amount of time (in milliseconds) the user must hold down a tap before the event becomes draggable/resizable. | ||
If not specified, it falls back to [longPressDelay](#longpressdelay). | ||
### eventMouseEnter | ||
@@ -1375,2 +1386,10 @@ - Type `function` | ||
### longPressDelay | ||
- Type `integer` | ||
- Default `1000` | ||
For touch devices, the amount of time (in milliseconds) the user must hold down a tap before the event becomes draggable/resizable or the date becomes selectable. | ||
For a more granular configuration, see [eventLongPressDelay](#eventlongpressdelay) and [selectLongPressDelay](#selectlongpressdelay). | ||
### monthMode | ||
@@ -1571,2 +1590,10 @@ - Type `boolean` | ||
### selectLongPressDelay | ||
- Type `integer` | ||
- Default `undefined` | ||
For touch devices, the amount of time (in milliseconds) the user must hold down a tap before the date becomes selectable. | ||
If not specified, it falls back to [longPressDelay](#longpressdelay). | ||
### selectMinDistance | ||
@@ -1573,0 +1600,0 @@ - Type `integer` |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
86198
2308
+ Added@event-calendar/common@0.13.4(transitive)
+ Added@event-calendar/time-grid@0.13.4(transitive)
- Removed@event-calendar/common@0.12.0(transitive)
- Removed@event-calendar/time-grid@0.12.0(transitive)