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
| Property | Type | Description |
|---|---|---|
| shouldResetSettingWhenComponentIsEmpty? | boolean | Whether to reset the setting when the component value is empty. Applicable only to text-based components. (Inherited from BindOptions) |
| shouldShowPlaceholderForDefaultValues? | boolean | Whether to show the placeholder for default values. Applicable only to text-based components. (Inherited from BindOptions) |
| shouldShowValidationMessage? | boolean | Whether to show the validation message when the component value is invalid. (Inherited from BindOptions) |
Methods
| Method | Returns | Description |
|---|---|---|
| componentToPluginSettingsValueConverter(uiValue) | PluginSettings[PropertyName] | ValidationMessageHolder | Converts 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) | UIValue | Converts the plugin settings value to the value used by the UI component. |
Links to this page: