Appointment

An appointment is a part of the calendar that represents a single appointment.

Import
the javascript logo
import { Appointment } from "@schukai/monster/source/components/time/timeline/appointment.mjs";
Source
the git logo
Package
the npm logo
Since
3.113.0
Release Day

Introduction

monster-appointment represents a single scheduled item within a timeline or calendar-like context.

Key Features

  • Compact appointment label: Displays a single appointment text.
  • Timeline-friendly building block: Fits into larger scheduling interfaces.
  • Simple labeling: Uses the text label as the core visible payload.

Appointment Simple

This example shows a single timeline appointment entry with a custom text label.

Javascript

/** this example does not use an extra script **/

HTML

<div style="display:grid;gap:var(--monster-space-2);">
  <monster-appointment data-monster-option-labels-text="Design review · 10:30"></monster-appointment>
  <monster-appointment data-monster-option-labels-text="Launch checklist · 13:00"></monster-appointment>
  <monster-appointment data-monster-option-labels-text="Retrospective · 16:30"></monster-appointment>
</div>

Stylesheet

/** no additional stylesheet is defined **/
Open in playground

Component Design

The appointment component is intentionally lightweight. It renders a control wrapper and an appointment part that displays the configured label text.

Styling Hooks

  • ::part(control): Styles the outer appointment wrapper.
  • ::part(appointment): Styles the visible label area.

HTML Structure

<monster-appointment></monster-appointment>

JavaScript Initialization

const element = document.createElement('monster-appointment');
document.body.appendChild(element);

Exported

Appointment

Derived from

CustomElement

Options

The Options listed in this section are defined directly within the class. This class is derived from several parent classes, including the CustomElement class. Therefore, it inherits Options from these parent classes. If you cannot find a specific Options in this list, we recommend consulting the documentation of the CustomElement.

Option
Type
Default
Description
templates
object
Template definitions
templates.main
string
undefined
Main template
labels
object
Label definitions
actions
object
undefined
Callbacks
actions.click
string
throw Error
features
object
undefined
Features
classes
object
undefined
CSS classes
disabled
boolean
false

  • since
  • deprecated

Properties and Attributes

The Properties and Attributes listed in this section are defined directly within the class. This class is derived from several parent classes, including the CustomElement class and ultimately from HTMLElement. Therefore, it inherits Properties and Attributes from these parent classes. If you cannot find a specific Properties and Attributes in this list, we recommend consulting the documentation of the CustomElement.

  • data-monster-options: Sets the configuration options for the collapse component when used as an HTML attribute.
  • data-monster-option-[name]: Sets the value of the configuration option [name] for the collapse component when used as an HTML attribute.

Methods

The methods listed in this section are defined directly within the class. This class is derived from several parent classes, including the CustomElement class and ultimately from HTMLElement. Therefore, it inherits methods from these parent classes. If you cannot find a specific method in this list, we recommend consulting the documentation of the CustomElement.

Static methods

[instanceSymbol]()
This method is called by the instanceof operator.
getCSSStyleSheet()
Returns
  • {CSSStyleSheet[]}
getTag()
Returns
  • {string}

Lifecycle methods

Lifecycle methods are called by the environment and are usually not intended to be called directly.

[assembleMethodSymbol]()
Returns
  • {Components.Time.Calendar

Events

This component does not fire any public events. It may fire events that are inherited from its parent classes.

The current width of the area is too small to display the content correctly.