@schedule-x/calendar-controls
Advanced tools
Comparing version 1.33.0 to 1.34.0
@@ -237,2 +237,3 @@ import { Signal } from "@preact/signals"; | ||
onClickDateTime?: (dateTime: string) => void; | ||
onClickPlusEvents?: (date: string) => void; | ||
} | ||
@@ -269,2 +270,5 @@ type CustomComponentFns = { | ||
}; | ||
type MonthGridOptions = { | ||
nEventsPerDay: number; | ||
}; | ||
type ColorDefinition = { | ||
@@ -294,2 +298,3 @@ main: string; | ||
weekOptions: WeekOptions; | ||
monthGridOptions: MonthGridOptions; | ||
calendars: Signal<Record<string, CalendarType>>; | ||
@@ -296,0 +301,0 @@ plugins: Plugins; |
@@ -237,2 +237,3 @@ import { Signal } from "@preact/signals"; | ||
onClickDateTime?: (dateTime: string) => void; | ||
onClickPlusEvents?: (date: string) => void; | ||
} | ||
@@ -269,2 +270,5 @@ type CustomComponentFns = { | ||
}; | ||
type MonthGridOptions = { | ||
nEventsPerDay: number; | ||
}; | ||
type ColorDefinition = { | ||
@@ -294,2 +298,3 @@ main: string; | ||
weekOptions: WeekOptions; | ||
monthGridOptions: MonthGridOptions; | ||
calendars: Signal<Record<string, CalendarType>>; | ||
@@ -296,0 +301,0 @@ plugins: Plugins; |
@@ -237,2 +237,3 @@ import { Signal } from "@preact/signals"; | ||
onClickDateTime?: (dateTime: string) => void; | ||
onClickPlusEvents?: (date: string) => void; | ||
} | ||
@@ -269,2 +270,5 @@ type CustomComponentFns = { | ||
}; | ||
type MonthGridOptions = { | ||
nEventsPerDay: number; | ||
}; | ||
type ColorDefinition = { | ||
@@ -294,2 +298,3 @@ main: string; | ||
weekOptions: WeekOptions; | ||
monthGridOptions: MonthGridOptions; | ||
calendars: Signal<Record<string, CalendarType>>; | ||
@@ -296,0 +301,0 @@ plugins: Plugins; |
{ | ||
"name": "@schedule-x/calendar-controls", | ||
"version": "1.33.0", | ||
"version": "1.34.0", | ||
"description": "Plugin for extra controls for the Schedule-X calendar", | ||
@@ -30,3 +30,3 @@ "author": { | ||
"homepage": "https://schedule-x.dev", | ||
"gitHead": "9e5cf87bf4dce3d093ab34fbe9a351057c7a3255" | ||
"gitHead": "3c7b1e48da5011fc6101d2f72b052a9fadf4e6e3" | ||
} |
40352
1205