/** * EffectsSettingsSectionCompact * * Compact animation and interaction effect settings for the constructor sidebar. * Uses smaller inputs and labels to fit in the narrow sidebar. */ import React from 'react'; import type { EffectsSettingsFormValues } from './types'; import type { CanvasElementType } from '../../types/constructor'; interface EffectsSettingsSectionCompactProps { values: EffectsSettingsFormValues; onChange: (prop: keyof EffectsSettingsFormValues, value: string) => void; elementType?: CanvasElementType; } const EffectsSettingsSectionCompact: React.FC< EffectsSettingsSectionCompactProps > = ({ values, onChange, elementType }) => { const showSlideTransition = elementType === 'gallery' || elementType === 'carousel'; return (
Appear Animation
Hover Effects
Hover Reveal
Focus Effects
Active/Press Effects
Slide Transition
Override page transition for slides. Leave empty for defaults.