Skip to content

TimeComponent

A component that displays and edits a time.

You can add this component using SettingEx.addTime.

In order to add the styles for the component, use initPluginContext in your plugin’s onload() function.

Alternatively, you can copy styles from https://github.com/mnaoumov/obsidian-dev-utils/releases/latest/download/styles.css.

Import:

import { TimeComponent } from 'obsidian-dev-utils/obsidian/setting-components/time-component';

Signature:

export class TimeComponent extends TypedRangeTextComponent<moment.Duration>

Extends: TypedRangeTextComponent<moment.Duration>

Constructor

new TimeComponent(containerEl: HTMLElement)

Creates a new time component.

Methods

MethodReturnsDescription
setMax(max)thisSets the maximum value of the component.
(Inherited from TypedRangeTextComponent)
setMin(min)thisSets the minimum value of the component.
(Inherited from TypedRangeTextComponent)
setStep(step)thisSets the step value of the component.
(Inherited from TypedRangeTextComponent)
valueFromString(str)moment.DurationConverts a string to a time.
valueToString(value)stringConverts a time to a string.

Links to this page: