[mod] widget:weekview

This commit is contained in:
Fenris Wolf 2024-10-01 22:52:31 +02:00
parent 6d0103b721
commit bf4bba1132

View file

@ -40,17 +40,6 @@ namespace _zeitbild.frontend_web.widgets.weekview
private container : (null | Element);
/**
*/
private action_select_day : (
(
date : lib_plankton.pit.type_date
)
=>
void
);
/**
*/
private action_select_event : (
@ -66,16 +55,20 @@ namespace _zeitbild.frontend_web.widgets.weekview
/**
*/
public constructor(
get_entries : type_get_entries,
options : {
action_select_day ?: (
private action_select_day : (
(
date : lib_plankton.pit.type_date
)
=>
void
);
/**
*/
public constructor(
get_entries : type_get_entries,
options : {
action_select_event ?: (
(
calendar_id : _zeitbild.frontend_web.type.calendar_id,
@ -85,6 +78,13 @@ namespace _zeitbild.frontend_web.widgets.weekview
=>
void
);
action_select_day ?: (
(
date : lib_plankton.pit.type_date
)
=>
void
);
} = {}
)
{