@superdangerous/app-framework 4.16.6 → 4.16.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@superdangerous/app-framework",
3
- "version": "4.16.6",
3
+ "version": "4.16.8",
4
4
  "description": "Opinionated TypeScript framework for structured vibecoding - building internal web and desktop apps with batteries included",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -238,13 +238,15 @@ export function useResizableColumns({
238
238
  const getColumnStyle = useCallback(
239
239
  (columnKey: string): React.CSSProperties => {
240
240
  const currentWidth = state.widths[columnKey] || DEFAULT_WIDTH;
241
+ const config = getColumnConfig(columnKey);
242
+ const minWidth = config?.minWidth || DEFAULT_MIN_WIDTH;
241
243
  return {
242
244
  width: currentWidth,
243
- minWidth: currentWidth,
245
+ minWidth: minWidth, // Use configured min width, not current width
244
246
  position: 'relative',
245
247
  };
246
248
  },
247
- [state.widths]
249
+ [state.widths, getColumnConfig]
248
250
  );
249
251
 
250
252
  // Calculate total table width from all columns
@@ -894,10 +894,9 @@ interface LogViewerProps {
894
894
  maxEntries?: number;
895
895
  defaultCategory?: 'current' | 'archives' | string;
896
896
  enableLiveUpdates?: boolean;
897
- enablePause?: boolean;
898
897
  enableAutoScroll?: boolean;
899
898
  autoScrollDefault?: boolean;
900
- pausedDefault?: boolean;
899
+ newestFirst?: boolean;
901
900
  categories?: LogCategory[];
902
901
  levelBadgeColors?: Record<string, string>;
903
902
  currentLogLevel?: string;
@@ -911,7 +910,7 @@ interface LogViewerProps {
911
910
  enableCopy?: boolean;
912
911
  className?: string;
913
912
  }
914
- declare function LogViewer({ logs: externalLogs, logFiles: externalLogFiles, onFetchLogs, onFetchArchives, onClearLogs, onExportLogs, onDownloadArchive, onDeleteArchive, onLogReceived, autoRefreshMs, maxEntries, defaultCategory, enableLiveUpdates, enablePause, enableAutoScroll, autoScrollDefault, pausedDefault, enableSearch, enableFilter, enableExport, enableClear, enableCopy, categories, levelBadgeColors, currentLogLevel, showCategories, showArchives, height, className, }: LogViewerProps): react_jsx_runtime.JSX.Element;
913
+ declare function LogViewer({ logs: externalLogs, logFiles: externalLogFiles, onFetchLogs, onFetchArchives, onClearLogs, onExportLogs, onDownloadArchive, onDeleteArchive, onLogReceived, autoRefreshMs, maxEntries, defaultCategory, enableLiveUpdates, enableAutoScroll, autoScrollDefault, newestFirst, enableSearch, enableFilter, enableExport, enableClear, enableCopy, categories, levelBadgeColors, currentLogLevel, showCategories, showArchives, height, className, }: LogViewerProps): react_jsx_runtime.JSX.Element;
915
914
 
916
915
  interface LogStatsProps {
917
916
  stats: {
@@ -894,10 +894,9 @@ interface LogViewerProps {
894
894
  maxEntries?: number;
895
895
  defaultCategory?: 'current' | 'archives' | string;
896
896
  enableLiveUpdates?: boolean;
897
- enablePause?: boolean;
898
897
  enableAutoScroll?: boolean;
899
898
  autoScrollDefault?: boolean;
900
- pausedDefault?: boolean;
899
+ newestFirst?: boolean;
901
900
  categories?: LogCategory[];
902
901
  levelBadgeColors?: Record<string, string>;
903
902
  currentLogLevel?: string;
@@ -911,7 +910,7 @@ interface LogViewerProps {
911
910
  enableCopy?: boolean;
912
911
  className?: string;
913
912
  }
914
- declare function LogViewer({ logs: externalLogs, logFiles: externalLogFiles, onFetchLogs, onFetchArchives, onClearLogs, onExportLogs, onDownloadArchive, onDeleteArchive, onLogReceived, autoRefreshMs, maxEntries, defaultCategory, enableLiveUpdates, enablePause, enableAutoScroll, autoScrollDefault, pausedDefault, enableSearch, enableFilter, enableExport, enableClear, enableCopy, categories, levelBadgeColors, currentLogLevel, showCategories, showArchives, height, className, }: LogViewerProps): react_jsx_runtime.JSX.Element;
913
+ declare function LogViewer({ logs: externalLogs, logFiles: externalLogFiles, onFetchLogs, onFetchArchives, onClearLogs, onExportLogs, onDownloadArchive, onDeleteArchive, onLogReceived, autoRefreshMs, maxEntries, defaultCategory, enableLiveUpdates, enableAutoScroll, autoScrollDefault, newestFirst, enableSearch, enableFilter, enableExport, enableClear, enableCopy, categories, levelBadgeColors, currentLogLevel, showCategories, showArchives, height, className, }: LogViewerProps): react_jsx_runtime.JSX.Element;
915
914
 
916
915
  interface LogStatsProps {
917
916
  stats: {