@superdangerous/app-framework 4.16.5 → 4.16.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.
- package/package.json +1 -1
- package/ui/dist/index.d.mts +2 -3
- package/ui/dist/index.d.ts +2 -3
- package/ui/dist/index.js +30 -30
- package/ui/dist/index.js.map +1 -1
- package/ui/dist/index.mjs +30 -30
- package/ui/dist/index.mjs.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superdangerous/app-framework",
|
|
3
|
-
"version": "4.16.
|
|
3
|
+
"version": "4.16.7",
|
|
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",
|
package/ui/dist/index.d.mts
CHANGED
|
@@ -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
|
-
|
|
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,
|
|
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: {
|
package/ui/dist/index.d.ts
CHANGED
|
@@ -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
|
-
|
|
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,
|
|
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: {
|