@geekapps/silo-elements-nextjs 0.2.34 → 0.2.36

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.
package/dist/index.d.ts CHANGED
@@ -105,9 +105,7 @@ declare function FileIcon({ mimeType, name, size, iconSize, showName, showSize,
105
105
 
106
106
  interface FileCardProps {
107
107
  fileId: string;
108
- /** Poll for status updates while processing (ms, default: 3000) */
109
108
  pollInterval?: number;
110
- /** Show action buttons */
111
109
  actions?: Array<"preview" | "copy-url" | "download" | "delete">;
112
110
  onPreview?: (fileId: string) => void;
113
111
  onCopyUrl?: (url: string) => void;
@@ -120,7 +118,6 @@ declare function FileCard({ fileId, pollInterval, actions, onPreview, onCopyUrl,
120
118
  interface FilePreviewProps {
121
119
  fileId: string | null;
122
120
  onClose: () => void;
123
- /** Poll interval while processing (ms, default: 3000) */
124
121
  pollInterval?: number;
125
122
  }
126
123
  declare function FilePreview({ fileId, onClose, pollInterval }: FilePreviewProps): react.JSX.Element | null;