[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 container : (null | Element);
/**
*/
private action_select_day : (
(
date : lib_plankton.pit.type_date
)
=>
void
);
/** /**
*/ */
private action_select_event : ( private action_select_event : (
@ -64,18 +53,22 @@ namespace _zeitbild.frontend_web.widgets.weekview
); );
/**
*/
private action_select_day : (
(
date : lib_plankton.pit.type_date
)
=>
void
);
/** /**
*/ */
public constructor( public constructor(
get_entries : type_get_entries, get_entries : type_get_entries,
options : { options : {
action_select_day ?: (
(
date : lib_plankton.pit.type_date
)
=>
void
);
action_select_event ?: ( action_select_event ?: (
( (
calendar_id : _zeitbild.frontend_web.type.calendar_id, calendar_id : _zeitbild.frontend_web.type.calendar_id,
@ -85,6 +78,13 @@ namespace _zeitbild.frontend_web.widgets.weekview
=> =>
void void
); );
action_select_day ?: (
(
date : lib_plankton.pit.type_date
)
=>
void
);
} = {} } = {}
) )
{ {