@event-calendar/core
Advanced tools
Comparing version 1.1.0 to 1.1.1
14
index.js
@@ -1564,4 +1564,4 @@ import { is_function, noop, identity, tick, SvelteComponent, init, safe_not_equal, empty, insert, destroy_each, detach, component_subscribe, set_store_value, element, text, attr, append, listen, set_data, transition_in, group_outros, check_outros, transition_out, space, create_component, mount_component, destroy_component, construct_svelte_component, set_style, get_current_component } from 'svelte/internal'; | ||
let $_queue; | ||
let $_events; | ||
let $events; | ||
let $_events; | ||
let $eventSources; | ||
@@ -1585,6 +1585,6 @@ let $_interaction; | ||
component_subscribe($$self, _iClass, value => $$invalidate(3, $_iClass = value)); | ||
component_subscribe($$self, _events, value => $$invalidate(36, $_events = value)); | ||
component_subscribe($$self, _events, value => $$invalidate(35, $_events = value)); | ||
component_subscribe($$self, _queue, value => $$invalidate(34, $_queue = value)); | ||
component_subscribe($$self, _scrollable, value => $$invalidate(0, $_scrollable = value)); | ||
component_subscribe($$self, events, value => $$invalidate(35, $events = value)); | ||
component_subscribe($$self, events, value => $$invalidate(36, $events = value)); | ||
component_subscribe($$self, eventSources, value => $$invalidate(37, $eventSources = value)); | ||
@@ -1680,6 +1680,6 @@ component_subscribe($$self, height, value => $$invalidate(4, $height = value)); | ||
function updateEvents(func) { | ||
if ($eventSources.length) { | ||
set_store_value(_events, $_events = func($_events), $_events); | ||
} else { | ||
set_store_value(events, $events = func($events), $events); | ||
set_store_value(_events, $_events = func($_events), $_events); | ||
if (!$eventSources.length) { | ||
set_store_value(events, $events = $_events, $events); | ||
} | ||
@@ -1686,0 +1686,0 @@ } |
{ | ||
"name": "@event-calendar/core", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"title": "Event Calendar Core package", | ||
@@ -18,12 +18,2 @@ "description": "Full-sized drag & drop event calendar with resource view", | ||
}, | ||
"funding": [ | ||
{ | ||
"type": "paypal_$10", | ||
"url": "https://paypal.me/vkurko/10usd" | ||
}, | ||
{ | ||
"type": "paypal_$1", | ||
"url": "https://paypal.me/vkurko/1usd" | ||
} | ||
], | ||
"license": "MIT", | ||
@@ -41,5 +31,5 @@ "type": "module", | ||
"dependencies": { | ||
"@event-calendar/common": "~1.1.0", | ||
"@event-calendar/common": "~1.1.1", | ||
"svelte": "^3.55.1" | ||
} | ||
} |
@@ -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) | ||
* Lightweight (29kb [br](https://en.wikipedia.org/wiki/Brotli) compressed) | ||
* Lightweight (28kb [br](https://en.wikipedia.org/wiki/Brotli) compressed) | ||
* Zero-dependency (pre-built bundle) | ||
@@ -197,4 +197,4 @@ * Used on over 60,000 websites with [Bookly](https://wordpress.org/plugins/bookly-responsive-appointment-booking-tool/) | ||
```html | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@1.1.0/event-calendar.min.css"> | ||
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@1.1.0/event-calendar.min.js"></script> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@1.1.1/event-calendar.min.css"> | ||
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@1.1.1/event-calendar.min.js"></script> | ||
``` | ||
@@ -201,0 +201,0 @@ |
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
150902
2543