@overmap-ai/core 1.0.48-fix-agent-errors.0 → 1.0.48-fix-agent-errors.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,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { FileViewerConfig } from "./typings.ts";
2
+ import { FileViewerConfig } from "./typings";
3
3
  export type FileViewerContextType = (func: (close: () => void) => FileViewerConfig) => void;
4
4
  export declare const FileViewerContext: import("react").Context<FileViewerContextType>;
5
5
  export declare const useFileViewer: () => FileViewerContextType;
@@ -1,5 +1,5 @@
1
1
  import { ChangeEvent } from "react";
2
- import { FieldTypeIdentifier } from "../typings.ts";
2
+ import { FieldTypeIdentifier } from "../typings";
3
3
  interface FieldActionsProps {
4
4
  index: number;
5
5
  type: FieldTypeIdentifier;
@@ -0,0 +1,2 @@
1
+ export declare const SHORT_TEXT_FIELD_MAX_LENGTH = 500;
2
+ export declare const LONG_TEXT_FIELD_MAX_LENGTH = 10000;
@@ -0,0 +1,9 @@
1
+ import { Dispatch, SetStateAction } from "react";
2
+ interface FullScreenImagePreviewProps {
3
+ file: File;
4
+ url: string;
5
+ name: string;
6
+ setShowPreview: Dispatch<SetStateAction<boolean>>;
7
+ }
8
+ export declare const FullScreenImagePreview: import("react").MemoExoticComponent<(props: FullScreenImagePreviewProps) => import("react/jsx-runtime").JSX.Element>;
9
+ export {};