@salina-app/media-editor 0.1.0 → 0.1.2

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,4 +1,3 @@
1
- import { SelectProps } from '@radix-ui/react-select';
2
1
  declare const highlightOptions: readonly [{
3
2
  readonly value: "off";
4
3
  readonly name: "Off";
@@ -13,16 +12,9 @@ declare const highlightOptions: readonly [{
13
12
  readonly name: "Highlight 3";
14
13
  }];
15
14
  export type HighlightOptionValue = (typeof highlightOptions)[number]['value'];
16
- export interface HighlightSelectionProps extends Omit<SelectProps, 'value' | 'onValueChange'> {
17
- className?: string;
18
- defaultValue?: HighlightOptionValue;
19
- useStore?: boolean;
20
- value?: HighlightOptionValue;
21
- onValueChange?: (value: HighlightOptionValue) => void;
22
- }
23
15
  /**
24
- * Reusable highlight selection dropdown component
25
- * Can work with internal store state or be controlled externally
16
+ * Render a selection dropdown for highlight options.
17
+ * Allows users to choose a highlight setting from predefined options.
26
18
  */
27
- declare const HighlightSelection: import('react').ForwardRefExoticComponent<HighlightSelectionProps & import('react').RefAttributes<HTMLButtonElement>>;
19
+ declare const HighlightSelection: () => import("react/jsx-runtime").JSX.Element;
28
20
  export default HighlightSelection;
@@ -6,7 +6,6 @@ type SubDirectoryListProps = IDirectory & {
6
6
  reloadTriggerMain?: number;
7
7
  userToken?: string;
8
8
  onTokenError?: () => void;
9
- onFileClick?: (url?: string) => void;
10
9
  };
11
- declare const SubDirectory: ({ is_directory, name, path, endpoint, fromMain, fromUpload, reloadTriggerMain, userToken, onFileClick, }: SubDirectoryListProps) => import("react/jsx-runtime").JSX.Element;
10
+ declare const SubDirectory: ({ is_directory, name, path, endpoint, fromMain, fromUpload, reloadTriggerMain, userToken, }: SubDirectoryListProps) => import("react/jsx-runtime").JSX.Element;
12
11
  export default SubDirectory;