@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
63 lines (62 loc) • 1.23 kB
JSON
{
"$ref": "#/definitions/Component",
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"Component": {
"additionalProperties": false,
"properties": {
"date": {
"format": "date-time",
"type": "string"
},
"disable_header": {
"type": "boolean"
},
"events": {
"items": {
"$ref": "#/definitions/IEvent"
},
"type": "array"
},
"id": {
"type": "string"
},
"selected": {
"format": "date-time",
"type": "string"
}
},
"type": "object"
},
"IEvent": {
"additionalProperties": false,
"properties": {
"color": {
"type": "string"
},
"date": {
"format": "date-time",
"type": "string"
},
"icon": {
"type": "string"
},
"id": {
"type": "string"
},
"label": {
"type": "string"
},
"link": {
"type": "string"
}
},
"required": [
"date",
"label",
"id"
],
"type": "object"
}
}
}