UNPKG

@htmlbricks/hb-calendar-appointments

Version:

Month agenda view: events for the current month are grouped by calendar day and listed chronologically with weekday, day number, time, and colored markers. Optional header with month navigation; changing month or selecting a day dispatches `changeCalendar

56 lines (55 loc) 1.26 kB
{ "$ref": "#/definitions/Events", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "Events": { "additionalProperties": false, "properties": { "calendarEventClick": { "additionalProperties": false, "properties": { "eventId": { "type": "string" } }, "required": [ "eventId" ], "type": "object" }, "changeCalendarDate": { "additionalProperties": false, "properties": { "date": { "format": "date-time", "type": "string" } }, "required": [ "date" ], "type": "object" }, "changeSelectedDate": { "additionalProperties": false, "properties": { "selectedDate": { "format": "date-time", "type": "string" } }, "required": [ "selectedDate" ], "type": "object" } }, "required": [ "calendarEventClick", "changeCalendarDate", "changeSelectedDate" ], "type": "object" } } }