Skip to content
This plugin is new and currently in beta. For the stable version, please use the previous version of the plugin.

SettingsTab

Enum defining standard settings panel tab identifiers.

typescript
enum SettingsTab

Description

SettingsTab provides standardized identifiers for the main tabs in block settings panels. These predefined tab types help maintain consistency across the editor interface and ensure that similar settings are grouped logically. While you can create custom tab identifiers, using these standard ones when appropriate improves user experience through familiar organization.

Import

typescript
import { SettingsTab } from '@stripoinc/ui-editor-extensions';

Enum Values

SETTINGS

General configuration and layout settings.

typescript
SETTINGS = 'settings'

Purpose: Primary settings that control block behavior and layout.


STYLES

Visual appearance and styling options.

typescript
STYLES = 'styles'

Purpose: Controls that affect the visual presentation.


DATA

Data binding and dynamic content settings.

typescript
DATA = 'data'

Purpose: Configuration for dynamic content and data sources.