39 lines
2.1 KiB
TypeScript
39 lines
2.1 KiB
TypeScript
/**
|
|
* Element Settings Components
|
|
*
|
|
* Barrel exports for all element settings form components.
|
|
*/
|
|
|
|
// Main components
|
|
export {
|
|
default as ElementSettingsTabs,
|
|
ElementSettingsTabsCompact,
|
|
} from './ElementSettingsTabs';
|
|
export { default as StyleSettingsSection } from './StyleSettingsSection';
|
|
export { default as StyleSettingsSectionCompact } from './StyleSettingsSectionCompact';
|
|
export { default as EffectsSettingsSection } from './EffectsSettingsSection';
|
|
export { default as EffectsSettingsSectionCompact } from './EffectsSettingsSectionCompact';
|
|
export { default as CommonSettingsSection } from './CommonSettingsSection';
|
|
export { default as CommonSettingsSectionCompact } from './CommonSettingsSectionCompact';
|
|
export { default as NavigationSettingsSection } from './NavigationSettingsSection';
|
|
export { default as NavigationSettingsSectionCompact } from './NavigationSettingsSectionCompact';
|
|
export { default as TooltipSettingsSection } from './TooltipSettingsSection';
|
|
export { default as TooltipSettingsSectionCompact } from './TooltipSettingsSectionCompact';
|
|
export { default as DescriptionSettingsSection } from './DescriptionSettingsSection';
|
|
export { default as DescriptionSettingsSectionCompact } from './DescriptionSettingsSectionCompact';
|
|
export { default as MediaSettingsSection } from './MediaSettingsSection';
|
|
export { default as MediaSettingsSectionCompact } from './MediaSettingsSectionCompact';
|
|
export { default as GallerySettingsSection } from './GallerySettingsSection';
|
|
export { default as GallerySettingsSectionCompact } from './GallerySettingsSectionCompact';
|
|
export { default as GallerySectionStyleInputs } from './GallerySectionStyleInputs';
|
|
export { default as CarouselSettingsSection } from './CarouselSettingsSection';
|
|
export { default as CarouselSettingsSectionCompact } from './CarouselSettingsSectionCompact';
|
|
export { default as GalleryCarouselSettingsSectionCompact } from './GalleryCarouselSettingsSectionCompact';
|
|
|
|
// Hook
|
|
export { useElementSettingsForm } from './useElementSettingsForm';
|
|
export type { FormState } from './useElementSettingsForm';
|
|
|
|
// Types
|
|
export * from './types';
|