Skip to content

BindOptionsExtended<PluginSettings, UIValue, PropertyName>

Extended options for PluginSettingsTabBase.bind.

Import:

import type { BindOptionsExtended } from 'obsidian-dev-utils/obsidian/plugin/plugin-settings-tab';

Signature:

export interface BindOptionsExtended<PluginSettings extends object, UIValue, PropertyName extends StringKeys<PluginSettings>> extends BindOptions<PluginSettings[PropertyName]>

Extends: BindOptions<PluginSettings[PropertyName]>

Properties

PropertyTypeDescription
shouldResetSettingWhenComponentIsEmpty?booleanWhether to reset the setting when the component value is empty. Applicable only to text-based components.
(Inherited from BindOptions)
shouldShowPlaceholderForDefaultValues?booleanWhether to show the placeholder for default values. Applicable only to text-based components.
(Inherited from BindOptions)
shouldShowValidationMessage?booleanWhether to show the validation message when the component value is invalid.
(Inherited from BindOptions)

Methods

MethodReturnsDescription
componentToPluginSettingsValueConverter(uiValue)PluginSettings[PropertyName] | ValidationMessageHolderConverts the UI component's value back to the plugin settings value.
onChanged(newValue, oldValue)Promisable<void>A callback function that is called when the value of the component changes.
(Inherited from BindOptions)
pluginSettingsToComponentValueConverter(pluginSettingsValue)UIValueConverts the plugin settings value to the value used by the UI component.

Links to this page: