ov25-setup 0.1.5 → 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,8 +1,8 @@
1
1
  import type { LayoutType } from '../../lib/config/preview-config';
2
2
  export type PreviewLayoutType = LayoutType;
3
3
  export type FormCarouselDisplayMode = 'none' | 'carousel' | 'stacked';
4
- export type FormConfiguratorDisplayMode = 'inline' | 'sheet' | 'variants-only-sheet';
5
- export type FormConfiguratorDisplayModeMobile = 'inline' | 'drawer' | 'variants-only-sheet';
4
+ export type FormConfiguratorDisplayMode = 'inline' | 'sheet' | 'modal' | 'variants-only-sheet';
5
+ export type FormConfiguratorDisplayModeMobile = 'inline' | 'drawer' | 'modal' | 'variants-only-sheet';
6
6
  export type FormVariantDisplayMode = 'wizard' | 'list' | 'tabs' | 'accordion' | 'tree';
7
7
  export interface SelectorFormState {
8
8
  enabled: boolean;
@@ -4,8 +4,5 @@ interface CSSEditorProps {
4
4
  placeholder?: string;
5
5
  className?: string;
6
6
  }
7
- /**
8
- * Lightweight CodeMirror 6 editor for CSS, styled to match the setup UI.
9
- */
10
7
  export declare function CSSEditor({ value, onChange, placeholder, className }: CSSEditorProps): import("react/jsx-runtime").JSX.Element;
11
8
  export {};