@geekmidas/ui 0.1.0 → 0.2.0
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/hooks/index.cjs +5 -0
- package/dist/hooks/index.d.cts +2 -0
- package/dist/hooks/index.d.mts +2 -0
- package/dist/hooks/index.mjs +3 -0
- package/dist/hooks-DBc-Cw9X.mjs +206 -0
- package/dist/hooks-DBc-Cw9X.mjs.map +1 -0
- package/dist/hooks-DuxmSO-h.cjs +252 -0
- package/dist/hooks-DuxmSO-h.cjs.map +1 -0
- package/dist/index-DmtSyJ1q.d.mts +113 -0
- package/dist/index-DmtSyJ1q.d.mts.map +1 -0
- package/dist/index-QNnnyGjB.d.cts +113 -0
- package/dist/index-QNnnyGjB.d.cts.map +1 -0
- package/dist/index.cjs +2566 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +727 -1
- package/dist/index.d.cts.map +1 -0
- package/dist/index.d.mts +727 -1
- package/dist/index.d.mts.map +1 -0
- package/dist/index.mjs +2428 -0
- package/dist/index.mjs.map +1 -0
- package/dist/styles/theme.cjs +6 -0
- package/dist/styles/theme.d.cts +2 -0
- package/dist/styles/theme.d.mts +2 -0
- package/dist/styles/theme.mjs +3 -0
- package/dist/theme-B5mGkTlU.d.cts +103 -0
- package/dist/theme-B5mGkTlU.d.cts.map +1 -0
- package/dist/theme-BRGSS8qx.cjs +135 -0
- package/dist/theme-BRGSS8qx.cjs.map +1 -0
- package/dist/theme-DAiFBbyM.mjs +111 -0
- package/dist/theme-DAiFBbyM.mjs.map +1 -0
- package/dist/theme-vpDwDfcR.d.mts +103 -0
- package/dist/theme-vpDwDfcR.d.mts.map +1 -0
- package/package.json +96 -5
- package/src/styles/globals.css +175 -0
- package/src/styles/theme.ts +138 -0
- package/scripts/embed-ui.ts +0 -97
- package/src/index.ts +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -1 +1,727 @@
|
|
|
1
|
-
|
|
1
|
+
import { UseWebSocketOptions, UseWebSocketReturn, WebSocketStatus, useDebounce, useLocalStorage, useWebSocket } from "./index-QNnnyGjB.cjs";
|
|
2
|
+
import { HttpMethod, LogLevel, StatusRange, Theme, ThemeColors, getLogLevelColor, getMethodColor, getStatusColor, theme } from "./theme-B5mGkTlU.cjs";
|
|
3
|
+
import * as react_jsx_runtime20 from "react/jsx-runtime";
|
|
4
|
+
import * as React from "react";
|
|
5
|
+
import * as class_variance_authority_types0 from "class-variance-authority/types";
|
|
6
|
+
import { VariantProps } from "class-variance-authority";
|
|
7
|
+
import { LucideIcon } from "lucide-react";
|
|
8
|
+
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
|
9
|
+
import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
|
|
10
|
+
import * as LabelPrimitive from "@radix-ui/react-label";
|
|
11
|
+
import * as ScrollAreaPrimitive from "@radix-ui/react-scroll-area";
|
|
12
|
+
import * as SelectPrimitive from "@radix-ui/react-select";
|
|
13
|
+
import * as SeparatorPrimitive from "@radix-ui/react-separator";
|
|
14
|
+
import * as TabsPrimitive from "@radix-ui/react-tabs";
|
|
15
|
+
import * as TooltipPrimitive from "@radix-ui/react-tooltip";
|
|
16
|
+
import { ClassValue } from "clsx";
|
|
17
|
+
|
|
18
|
+
//#region src/components/data-display/charts/area-time-series-chart.d.ts
|
|
19
|
+
interface TimeSeriesDataPoint {
|
|
20
|
+
timestamp: number;
|
|
21
|
+
value: number;
|
|
22
|
+
secondaryValue?: number;
|
|
23
|
+
}
|
|
24
|
+
interface AreaTimeSeriesChartProps {
|
|
25
|
+
data: TimeSeriesDataPoint[];
|
|
26
|
+
/** Label for the primary value */
|
|
27
|
+
primaryLabel?: string;
|
|
28
|
+
/** Label for the secondary value (optional) */
|
|
29
|
+
secondaryLabel?: string;
|
|
30
|
+
/** Color for primary series */
|
|
31
|
+
primaryColor?: string;
|
|
32
|
+
/** Color for secondary series */
|
|
33
|
+
secondaryColor?: string;
|
|
34
|
+
/** Time format pattern (date-fns) */
|
|
35
|
+
timeFormat?: string;
|
|
36
|
+
/** Value formatter */
|
|
37
|
+
valueFormatter?: (value: number) => string;
|
|
38
|
+
/** Chart className */
|
|
39
|
+
className?: string;
|
|
40
|
+
/** Show legend */
|
|
41
|
+
showLegend?: boolean;
|
|
42
|
+
}
|
|
43
|
+
declare function AreaTimeSeriesChart({
|
|
44
|
+
data,
|
|
45
|
+
primaryLabel,
|
|
46
|
+
secondaryLabel,
|
|
47
|
+
primaryColor,
|
|
48
|
+
secondaryColor,
|
|
49
|
+
timeFormat,
|
|
50
|
+
valueFormatter,
|
|
51
|
+
className,
|
|
52
|
+
showLegend
|
|
53
|
+
}: AreaTimeSeriesChartProps): react_jsx_runtime20.JSX.Element;
|
|
54
|
+
//# sourceMappingURL=area-time-series-chart.d.ts.map
|
|
55
|
+
//#endregion
|
|
56
|
+
//#region src/components/data-display/charts/bar-list-chart.d.ts
|
|
57
|
+
interface BarListItem {
|
|
58
|
+
name: string;
|
|
59
|
+
value: number;
|
|
60
|
+
}
|
|
61
|
+
interface BarListChartProps<T extends BarListItem> {
|
|
62
|
+
data: T[];
|
|
63
|
+
/** Value formatter */
|
|
64
|
+
valueFormatter?: (value: number) => string;
|
|
65
|
+
/** Click handler */
|
|
66
|
+
onItemClick?: (item: T) => void;
|
|
67
|
+
/** Chart className */
|
|
68
|
+
className?: string;
|
|
69
|
+
/** Empty state message */
|
|
70
|
+
emptyMessage?: string;
|
|
71
|
+
/** Bar color */
|
|
72
|
+
color?: string;
|
|
73
|
+
}
|
|
74
|
+
declare function BarListChart<T extends BarListItem>({
|
|
75
|
+
data,
|
|
76
|
+
valueFormatter,
|
|
77
|
+
onItemClick,
|
|
78
|
+
className,
|
|
79
|
+
emptyMessage,
|
|
80
|
+
color
|
|
81
|
+
}: BarListChartProps<T>): react_jsx_runtime20.JSX.Element;
|
|
82
|
+
//# sourceMappingURL=bar-list-chart.d.ts.map
|
|
83
|
+
//#endregion
|
|
84
|
+
//#region src/components/data-display/charts/latency-percentiles-chart.d.ts
|
|
85
|
+
interface LatencyPercentilesChartProps {
|
|
86
|
+
p50: number;
|
|
87
|
+
p95: number;
|
|
88
|
+
p99: number;
|
|
89
|
+
className?: string;
|
|
90
|
+
/** Custom formatter for duration values (default: ms/s format) */
|
|
91
|
+
valueFormatter?: (ms: number) => string;
|
|
92
|
+
}
|
|
93
|
+
declare function LatencyPercentilesChart({
|
|
94
|
+
p50,
|
|
95
|
+
p95,
|
|
96
|
+
p99,
|
|
97
|
+
className,
|
|
98
|
+
valueFormatter
|
|
99
|
+
}: LatencyPercentilesChartProps): react_jsx_runtime20.JSX.Element;
|
|
100
|
+
//# sourceMappingURL=latency-percentiles-chart.d.ts.map
|
|
101
|
+
//#endregion
|
|
102
|
+
//#region src/components/data-display/charts/status-distribution-chart.d.ts
|
|
103
|
+
interface StatusDistributionData {
|
|
104
|
+
'2xx': number;
|
|
105
|
+
'3xx': number;
|
|
106
|
+
'4xx': number;
|
|
107
|
+
'5xx': number;
|
|
108
|
+
}
|
|
109
|
+
interface StatusDistributionChartProps {
|
|
110
|
+
data: StatusDistributionData;
|
|
111
|
+
className?: string;
|
|
112
|
+
}
|
|
113
|
+
declare function StatusDistributionChart({
|
|
114
|
+
data,
|
|
115
|
+
className
|
|
116
|
+
}: StatusDistributionChartProps): react_jsx_runtime20.JSX.Element;
|
|
117
|
+
//# sourceMappingURL=status-distribution-chart.d.ts.map
|
|
118
|
+
//#endregion
|
|
119
|
+
//#region src/components/data-display/charts/time-range-selector.d.ts
|
|
120
|
+
type TimeRangePreset = '1h' | '6h' | '24h' | '7d' | 'custom';
|
|
121
|
+
interface TimeRange {
|
|
122
|
+
preset: TimeRangePreset;
|
|
123
|
+
start: Date;
|
|
124
|
+
end: Date;
|
|
125
|
+
}
|
|
126
|
+
interface TimeRangeSelectorProps {
|
|
127
|
+
value: TimeRange;
|
|
128
|
+
onChange: (range: TimeRange) => void;
|
|
129
|
+
/** Available presets (default: all) */
|
|
130
|
+
presets?: Array<{
|
|
131
|
+
label: string;
|
|
132
|
+
value: TimeRangePreset;
|
|
133
|
+
}>;
|
|
134
|
+
/** Show date picker icon */
|
|
135
|
+
showIcon?: boolean;
|
|
136
|
+
/** Class name */
|
|
137
|
+
className?: string;
|
|
138
|
+
}
|
|
139
|
+
declare function TimeRangeSelector({
|
|
140
|
+
value,
|
|
141
|
+
onChange,
|
|
142
|
+
presets,
|
|
143
|
+
className
|
|
144
|
+
}: TimeRangeSelectorProps): react_jsx_runtime20.JSX.Element;
|
|
145
|
+
/**
|
|
146
|
+
* Create a time range from a preset
|
|
147
|
+
*/
|
|
148
|
+
declare function createTimeRange(preset?: TimeRangePreset): TimeRange;
|
|
149
|
+
//# sourceMappingURL=time-range-selector.d.ts.map
|
|
150
|
+
//#endregion
|
|
151
|
+
//#region src/components/data-display/data-table.d.ts
|
|
152
|
+
interface DataTableColumn<T> {
|
|
153
|
+
/** Unique key for the column */
|
|
154
|
+
key: string;
|
|
155
|
+
/** Header label */
|
|
156
|
+
header: string | React.ReactNode;
|
|
157
|
+
/** Accessor function to get cell value */
|
|
158
|
+
accessor?: (row: T) => React.ReactNode;
|
|
159
|
+
/** Whether this column is sortable */
|
|
160
|
+
sortable?: boolean;
|
|
161
|
+
/** Custom cell renderer */
|
|
162
|
+
cell?: (row: T, index: number) => React.ReactNode;
|
|
163
|
+
/** Column width */
|
|
164
|
+
width?: string | number;
|
|
165
|
+
/** Alignment */
|
|
166
|
+
align?: 'left' | 'center' | 'right';
|
|
167
|
+
/** Custom header class */
|
|
168
|
+
headerClassName?: string;
|
|
169
|
+
/** Custom cell class */
|
|
170
|
+
cellClassName?: string;
|
|
171
|
+
}
|
|
172
|
+
interface DataTableProps<T> extends React.HTMLAttributes<HTMLDivElement> {
|
|
173
|
+
/** Array of column definitions */
|
|
174
|
+
columns: DataTableColumn<T>[];
|
|
175
|
+
/** Array of data items */
|
|
176
|
+
data: T[];
|
|
177
|
+
/** Key extractor for rows */
|
|
178
|
+
getRowKey?: (row: T, index: number) => string | number;
|
|
179
|
+
/** Currently sorted column */
|
|
180
|
+
sortColumn?: string;
|
|
181
|
+
/** Sort direction */
|
|
182
|
+
sortDirection?: 'asc' | 'desc';
|
|
183
|
+
/** Callback when sort changes */
|
|
184
|
+
onSortChange?: (column: string, direction: 'asc' | 'desc') => void;
|
|
185
|
+
/** Whether to show pagination */
|
|
186
|
+
pagination?: boolean;
|
|
187
|
+
/** Current page (1-indexed) */
|
|
188
|
+
page?: number;
|
|
189
|
+
/** Items per page */
|
|
190
|
+
pageSize?: number;
|
|
191
|
+
/** Total number of items (for server-side pagination) */
|
|
192
|
+
totalItems?: number;
|
|
193
|
+
/** Callback when page changes */
|
|
194
|
+
onPageChange?: (page: number) => void;
|
|
195
|
+
/** Callback when page size changes */
|
|
196
|
+
onPageSizeChange?: (pageSize: number) => void;
|
|
197
|
+
/** Page size options */
|
|
198
|
+
pageSizeOptions?: number[];
|
|
199
|
+
/** Whether the table is loading */
|
|
200
|
+
loading?: boolean;
|
|
201
|
+
/** Empty state content */
|
|
202
|
+
emptyState?: React.ReactNode;
|
|
203
|
+
/** Row click handler */
|
|
204
|
+
onRowClick?: (row: T, index: number) => void;
|
|
205
|
+
/** Selected row keys */
|
|
206
|
+
selectedKeys?: Set<string | number>;
|
|
207
|
+
/** Striped rows */
|
|
208
|
+
striped?: boolean;
|
|
209
|
+
/** Hoverable rows */
|
|
210
|
+
hoverable?: boolean;
|
|
211
|
+
/** Compact mode */
|
|
212
|
+
compact?: boolean;
|
|
213
|
+
}
|
|
214
|
+
declare const DataTable: <T>(props: DataTableProps<T> & {
|
|
215
|
+
ref?: React.ForwardedRef<HTMLDivElement>;
|
|
216
|
+
}) => React.ReactElement;
|
|
217
|
+
//# sourceMappingURL=data-table.d.ts.map
|
|
218
|
+
//#endregion
|
|
219
|
+
//#region src/components/data-display/json-viewer.d.ts
|
|
220
|
+
interface JsonViewerProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
221
|
+
/** The JSON data to display */
|
|
222
|
+
data: unknown;
|
|
223
|
+
/** Whether to start expanded */
|
|
224
|
+
defaultExpanded?: boolean;
|
|
225
|
+
/** Maximum depth to expand by default */
|
|
226
|
+
expandDepth?: number;
|
|
227
|
+
/** Whether to show copy button */
|
|
228
|
+
copyable?: boolean;
|
|
229
|
+
/** Custom class for keys */
|
|
230
|
+
keyClassName?: string;
|
|
231
|
+
/** Custom class for values */
|
|
232
|
+
valueClassName?: string;
|
|
233
|
+
}
|
|
234
|
+
declare const JsonViewer: React.ForwardRefExoticComponent<JsonViewerProps & React.RefAttributes<HTMLDivElement>>;
|
|
235
|
+
//#endregion
|
|
236
|
+
//#region src/components/data-display/sparkline.d.ts
|
|
237
|
+
interface SparklineProps extends React.SVGAttributes<SVGSVGElement> {
|
|
238
|
+
/** Array of data points */
|
|
239
|
+
data: number[];
|
|
240
|
+
/** Width of the sparkline */
|
|
241
|
+
width?: number;
|
|
242
|
+
/** Height of the sparkline */
|
|
243
|
+
height?: number;
|
|
244
|
+
/** Stroke color */
|
|
245
|
+
color?: string;
|
|
246
|
+
/** Stroke width */
|
|
247
|
+
strokeWidth?: number;
|
|
248
|
+
/** Whether to show filled area under the line */
|
|
249
|
+
filled?: boolean;
|
|
250
|
+
/** Fill opacity (0-1) */
|
|
251
|
+
fillOpacity?: number;
|
|
252
|
+
/** Whether to show dots at data points */
|
|
253
|
+
showDots?: boolean;
|
|
254
|
+
/** Whether to curve the line */
|
|
255
|
+
curved?: boolean;
|
|
256
|
+
/** Minimum value (defaults to min of data) */
|
|
257
|
+
min?: number;
|
|
258
|
+
/** Maximum value (defaults to max of data) */
|
|
259
|
+
max?: number;
|
|
260
|
+
}
|
|
261
|
+
declare const Sparkline: React.ForwardRefExoticComponent<SparklineProps & React.RefAttributes<SVGSVGElement>>;
|
|
262
|
+
interface SparkBarProps extends React.SVGAttributes<SVGSVGElement> {
|
|
263
|
+
/** Array of data points */
|
|
264
|
+
data: number[];
|
|
265
|
+
/** Width of the chart */
|
|
266
|
+
width?: number;
|
|
267
|
+
/** Height of the chart */
|
|
268
|
+
height?: number;
|
|
269
|
+
/** Bar color */
|
|
270
|
+
color?: string;
|
|
271
|
+
/** Gap between bars (as a ratio 0-1) */
|
|
272
|
+
gap?: number;
|
|
273
|
+
/** Minimum value (defaults to 0) */
|
|
274
|
+
min?: number;
|
|
275
|
+
/** Maximum value (defaults to max of data) */
|
|
276
|
+
max?: number;
|
|
277
|
+
/** Border radius of bars */
|
|
278
|
+
radius?: number;
|
|
279
|
+
}
|
|
280
|
+
declare const SparkBar: React.ForwardRefExoticComponent<SparkBarProps & React.RefAttributes<SVGSVGElement>>;
|
|
281
|
+
interface MetricCardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
282
|
+
/** Card title */
|
|
283
|
+
title: string;
|
|
284
|
+
/** Main value to display */
|
|
285
|
+
value: string | number;
|
|
286
|
+
/** Optional description or subtext */
|
|
287
|
+
description?: string;
|
|
288
|
+
/** Sparkline data */
|
|
289
|
+
sparklineData?: number[];
|
|
290
|
+
/** Trend direction */
|
|
291
|
+
trend?: 'up' | 'down' | 'neutral';
|
|
292
|
+
/** Trend value (e.g., "+12%") */
|
|
293
|
+
trendValue?: string;
|
|
294
|
+
/** Icon to display */
|
|
295
|
+
icon?: React.ReactNode;
|
|
296
|
+
}
|
|
297
|
+
declare const MetricCard: React.ForwardRefExoticComponent<MetricCardProps & React.RefAttributes<HTMLDivElement>>;
|
|
298
|
+
//#endregion
|
|
299
|
+
//#region src/components/data-display/timeline.d.ts
|
|
300
|
+
declare const timelineVariants: (props?: ({
|
|
301
|
+
orientation?: "vertical" | "horizontal" | null | undefined;
|
|
302
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
303
|
+
interface TimelineProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof timelineVariants> {}
|
|
304
|
+
declare const Timeline: React.ForwardRefExoticComponent<TimelineProps & React.RefAttributes<HTMLDivElement>>;
|
|
305
|
+
declare const timelineItemVariants: (props?: ({
|
|
306
|
+
orientation?: "vertical" | "horizontal" | null | undefined;
|
|
307
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
308
|
+
interface TimelineItemProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof timelineItemVariants> {
|
|
309
|
+
/** Whether this is the active/current item */
|
|
310
|
+
active?: boolean;
|
|
311
|
+
}
|
|
312
|
+
declare const TimelineItem: React.ForwardRefExoticComponent<TimelineItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
313
|
+
declare const timelineIndicatorVariants: (props?: ({
|
|
314
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
315
|
+
variant?: "default" | "primary" | "success" | "warning" | "error" | "info" | "muted" | null | undefined;
|
|
316
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
317
|
+
interface TimelineIndicatorProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof timelineIndicatorVariants> {
|
|
318
|
+
/** Whether to show a connecting line */
|
|
319
|
+
showLine?: boolean;
|
|
320
|
+
/** Line position */
|
|
321
|
+
linePosition?: 'before' | 'after' | 'both';
|
|
322
|
+
/** Orientation (inherited from Timeline) */
|
|
323
|
+
orientation?: 'vertical' | 'horizontal';
|
|
324
|
+
}
|
|
325
|
+
declare const TimelineIndicator: React.ForwardRefExoticComponent<TimelineIndicatorProps & React.RefAttributes<HTMLDivElement>>;
|
|
326
|
+
interface TimelineConnectorProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
327
|
+
/** Orientation (inherited from Timeline) */
|
|
328
|
+
orientation?: 'vertical' | 'horizontal';
|
|
329
|
+
}
|
|
330
|
+
declare const TimelineConnector: React.ForwardRefExoticComponent<TimelineConnectorProps & React.RefAttributes<HTMLDivElement>>;
|
|
331
|
+
interface TimelineContentProps extends React.HTMLAttributes<HTMLDivElement> {}
|
|
332
|
+
declare const TimelineContent: React.ForwardRefExoticComponent<TimelineContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
333
|
+
interface TimelineTitleProps extends React.HTMLAttributes<HTMLHeadingElement> {}
|
|
334
|
+
declare const TimelineTitle: React.ForwardRefExoticComponent<TimelineTitleProps & React.RefAttributes<HTMLHeadingElement>>;
|
|
335
|
+
interface TimelineDescriptionProps extends React.HTMLAttributes<HTMLParagraphElement> {}
|
|
336
|
+
declare const TimelineDescription: React.ForwardRefExoticComponent<TimelineDescriptionProps & React.RefAttributes<HTMLParagraphElement>>;
|
|
337
|
+
interface TimelineTimeProps extends React.HTMLAttributes<HTMLSpanElement> {}
|
|
338
|
+
declare const TimelineTime: React.ForwardRefExoticComponent<TimelineTimeProps & React.RefAttributes<HTMLSpanElement>>;
|
|
339
|
+
//#endregion
|
|
340
|
+
//#region src/components/feedback/empty-state.d.ts
|
|
341
|
+
declare const emptyStateVariants: (props?: ({
|
|
342
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
343
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
344
|
+
interface EmptyStateProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof emptyStateVariants> {
|
|
345
|
+
/** Icon to display */
|
|
346
|
+
icon?: React.ReactNode;
|
|
347
|
+
/** Title text */
|
|
348
|
+
title?: string;
|
|
349
|
+
/** Description text */
|
|
350
|
+
description?: string;
|
|
351
|
+
/** Primary action button */
|
|
352
|
+
action?: {
|
|
353
|
+
label: string;
|
|
354
|
+
onClick: () => void;
|
|
355
|
+
};
|
|
356
|
+
/** Secondary action button */
|
|
357
|
+
secondaryAction?: {
|
|
358
|
+
label: string;
|
|
359
|
+
onClick: () => void;
|
|
360
|
+
};
|
|
361
|
+
}
|
|
362
|
+
declare const EmptyState: React.ForwardRefExoticComponent<EmptyStateProps & React.RefAttributes<HTMLDivElement>>;
|
|
363
|
+
interface NoDataProps extends Omit<EmptyStateProps, 'icon' | 'title'> {
|
|
364
|
+
title?: string;
|
|
365
|
+
}
|
|
366
|
+
declare const NoData: React.ForwardRefExoticComponent<NoDataProps & React.RefAttributes<HTMLDivElement>>;
|
|
367
|
+
interface NoResultsProps extends Omit<EmptyStateProps, 'icon' | 'title'> {
|
|
368
|
+
title?: string;
|
|
369
|
+
searchTerm?: string;
|
|
370
|
+
}
|
|
371
|
+
declare const NoResults: React.ForwardRefExoticComponent<NoResultsProps & React.RefAttributes<HTMLDivElement>>;
|
|
372
|
+
interface NotFoundProps extends Omit<EmptyStateProps, 'icon' | 'title'> {
|
|
373
|
+
title?: string;
|
|
374
|
+
}
|
|
375
|
+
declare const NotFound: React.ForwardRefExoticComponent<NotFoundProps & React.RefAttributes<HTMLDivElement>>;
|
|
376
|
+
interface ServerErrorProps extends Omit<EmptyStateProps, 'icon' | 'title'> {
|
|
377
|
+
title?: string;
|
|
378
|
+
}
|
|
379
|
+
declare const ServerError: React.ForwardRefExoticComponent<ServerErrorProps & React.RefAttributes<HTMLDivElement>>;
|
|
380
|
+
//#endregion
|
|
381
|
+
//#region src/components/feedback/live-indicator.d.ts
|
|
382
|
+
declare const liveIndicatorVariants: (props?: ({
|
|
383
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
384
|
+
variant?: "default" | "solid" | null | undefined;
|
|
385
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
386
|
+
interface LiveIndicatorProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onToggle'>, VariantProps<typeof liveIndicatorVariants> {
|
|
387
|
+
/** Whether the indicator is in live/active state */
|
|
388
|
+
live?: boolean;
|
|
389
|
+
/** Label to show when live */
|
|
390
|
+
liveLabel?: string;
|
|
391
|
+
/** Label to show when paused */
|
|
392
|
+
pausedLabel?: string;
|
|
393
|
+
/** Whether to show a toggle button */
|
|
394
|
+
toggleable?: boolean;
|
|
395
|
+
/** Callback when toggled */
|
|
396
|
+
onLiveToggle?: (live: boolean) => void;
|
|
397
|
+
/** Custom color for the dot when live */
|
|
398
|
+
liveColor?: string;
|
|
399
|
+
}
|
|
400
|
+
declare const LiveIndicator: React.ForwardRefExoticComponent<LiveIndicatorProps & React.RefAttributes<HTMLDivElement>>;
|
|
401
|
+
interface ConnectionStatusProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
402
|
+
/** Connection status */
|
|
403
|
+
status: 'connected' | 'connecting' | 'disconnected' | 'error';
|
|
404
|
+
/** Whether to show label */
|
|
405
|
+
showLabel?: boolean;
|
|
406
|
+
/** Size of the indicator */
|
|
407
|
+
size?: 'sm' | 'md' | 'lg';
|
|
408
|
+
}
|
|
409
|
+
declare const ConnectionStatus: React.ForwardRefExoticComponent<ConnectionStatusProps & React.RefAttributes<HTMLDivElement>>;
|
|
410
|
+
//#endregion
|
|
411
|
+
//#region src/components/feedback/loading.d.ts
|
|
412
|
+
declare const spinnerVariants: (props?: ({
|
|
413
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
|
|
414
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
415
|
+
interface SpinnerProps extends Omit<React.SVGAttributes<SVGSVGElement>, 'children'>, VariantProps<typeof spinnerVariants> {}
|
|
416
|
+
declare const Spinner: React.ForwardRefExoticComponent<SpinnerProps & React.RefAttributes<SVGSVGElement>>;
|
|
417
|
+
declare const loadingOverlayVariants: (props?: ({
|
|
418
|
+
variant?: "default" | "dark" | "light" | null | undefined;
|
|
419
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
420
|
+
interface LoadingOverlayProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof loadingOverlayVariants> {
|
|
421
|
+
/** Whether the overlay is visible */
|
|
422
|
+
loading?: boolean;
|
|
423
|
+
/** Text to display below spinner */
|
|
424
|
+
text?: string;
|
|
425
|
+
/** Spinner size */
|
|
426
|
+
spinnerSize?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
427
|
+
}
|
|
428
|
+
declare const LoadingOverlay: React.ForwardRefExoticComponent<LoadingOverlayProps & React.RefAttributes<HTMLDivElement>>;
|
|
429
|
+
interface LoadingContainerProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
430
|
+
/** Whether the container is loading */
|
|
431
|
+
loading?: boolean;
|
|
432
|
+
/** Text to display below spinner */
|
|
433
|
+
loadingText?: string;
|
|
434
|
+
/** Spinner size */
|
|
435
|
+
spinnerSize?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
436
|
+
/** Overlay variant */
|
|
437
|
+
overlayVariant?: 'default' | 'dark' | 'light';
|
|
438
|
+
}
|
|
439
|
+
declare const LoadingContainer: React.ForwardRefExoticComponent<LoadingContainerProps & React.RefAttributes<HTMLDivElement>>;
|
|
440
|
+
interface LoadingDotsProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
441
|
+
/** Size of dots */
|
|
442
|
+
size?: 'sm' | 'md' | 'lg';
|
|
443
|
+
}
|
|
444
|
+
declare const LoadingDots: React.ForwardRefExoticComponent<LoadingDotsProps & React.RefAttributes<HTMLDivElement>>;
|
|
445
|
+
interface SkeletonProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
446
|
+
/** Width of the skeleton */
|
|
447
|
+
width?: string | number;
|
|
448
|
+
/** Height of the skeleton */
|
|
449
|
+
height?: string | number;
|
|
450
|
+
/** Whether to use rounded corners */
|
|
451
|
+
rounded?: boolean | 'sm' | 'md' | 'lg' | 'full';
|
|
452
|
+
}
|
|
453
|
+
declare const Skeleton: React.ForwardRefExoticComponent<SkeletonProps & React.RefAttributes<HTMLDivElement>>;
|
|
454
|
+
//#endregion
|
|
455
|
+
//#region src/components/feedback/status-badge.d.ts
|
|
456
|
+
declare const statusBadgeVariants: (props?: ({
|
|
457
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
458
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
459
|
+
interface StatusBadgeProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof statusBadgeVariants> {
|
|
460
|
+
/** HTTP status code to display */
|
|
461
|
+
status?: number;
|
|
462
|
+
/** HTTP method to display */
|
|
463
|
+
method?: string;
|
|
464
|
+
/** Log level to display */
|
|
465
|
+
logLevel?: string;
|
|
466
|
+
/** Custom color (overrides automatic color) */
|
|
467
|
+
color?: string;
|
|
468
|
+
/** Whether to show a pulsing dot */
|
|
469
|
+
pulse?: boolean;
|
|
470
|
+
}
|
|
471
|
+
declare const StatusBadge: React.ForwardRefExoticComponent<StatusBadgeProps & React.RefAttributes<HTMLSpanElement>>;
|
|
472
|
+
interface HttpStatusBadgeProps extends Omit<StatusBadgeProps, 'status' | 'method' | 'logLevel'> {
|
|
473
|
+
/** HTTP status code */
|
|
474
|
+
code: number;
|
|
475
|
+
}
|
|
476
|
+
declare const HttpStatusBadge: React.ForwardRefExoticComponent<HttpStatusBadgeProps & React.RefAttributes<HTMLSpanElement>>;
|
|
477
|
+
interface HttpMethodBadgeProps extends Omit<StatusBadgeProps, 'status' | 'method' | 'logLevel'> {
|
|
478
|
+
/** HTTP method */
|
|
479
|
+
method: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'HEAD' | 'OPTIONS';
|
|
480
|
+
}
|
|
481
|
+
declare const HttpMethodBadge: React.ForwardRefExoticComponent<HttpMethodBadgeProps & React.RefAttributes<HTMLSpanElement>>;
|
|
482
|
+
interface LogLevelBadgeProps extends Omit<StatusBadgeProps, 'status' | 'method' | 'logLevel'> {
|
|
483
|
+
/** Log level */
|
|
484
|
+
level: 'trace' | 'debug' | 'info' | 'warn' | 'error' | 'fatal';
|
|
485
|
+
}
|
|
486
|
+
declare const LogLevelBadge: React.ForwardRefExoticComponent<LogLevelBadgeProps & React.RefAttributes<HTMLSpanElement>>;
|
|
487
|
+
//#endregion
|
|
488
|
+
//#region src/components/layout/header.d.ts
|
|
489
|
+
interface HeaderProps extends React.HTMLAttributes<HTMLElement> {
|
|
490
|
+
sticky?: boolean;
|
|
491
|
+
}
|
|
492
|
+
declare const Header: React.ForwardRefExoticComponent<HeaderProps & React.RefAttributes<HTMLElement>>;
|
|
493
|
+
interface HeaderTitleProps extends React.HTMLAttributes<HTMLHeadingElement> {}
|
|
494
|
+
declare const HeaderTitle: React.ForwardRefExoticComponent<HeaderTitleProps & React.RefAttributes<HTMLHeadingElement>>;
|
|
495
|
+
interface HeaderDescriptionProps extends React.HTMLAttributes<HTMLParagraphElement> {}
|
|
496
|
+
declare const HeaderDescription: React.ForwardRefExoticComponent<HeaderDescriptionProps & React.RefAttributes<HTMLParagraphElement>>;
|
|
497
|
+
interface HeaderActionsProps extends React.HTMLAttributes<HTMLDivElement> {}
|
|
498
|
+
declare const HeaderActions: React.ForwardRefExoticComponent<HeaderActionsProps & React.RefAttributes<HTMLDivElement>>;
|
|
499
|
+
interface BreadcrumbItem {
|
|
500
|
+
label: string;
|
|
501
|
+
href?: string;
|
|
502
|
+
current?: boolean;
|
|
503
|
+
}
|
|
504
|
+
interface HeaderBreadcrumbsProps extends React.HTMLAttributes<HTMLElement> {
|
|
505
|
+
items: BreadcrumbItem[];
|
|
506
|
+
separator?: React.ReactNode;
|
|
507
|
+
}
|
|
508
|
+
declare const HeaderBreadcrumbs: React.ForwardRefExoticComponent<HeaderBreadcrumbsProps & React.RefAttributes<HTMLElement>>;
|
|
509
|
+
interface HeaderGroupProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
510
|
+
align?: 'start' | 'center' | 'end';
|
|
511
|
+
}
|
|
512
|
+
declare const HeaderGroup: React.ForwardRefExoticComponent<HeaderGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
513
|
+
//#endregion
|
|
514
|
+
//#region src/components/layout/shell.d.ts
|
|
515
|
+
interface ShellProps extends React.HTMLAttributes<HTMLDivElement> {}
|
|
516
|
+
declare const Shell: React.ForwardRefExoticComponent<ShellProps & React.RefAttributes<HTMLDivElement>>;
|
|
517
|
+
interface ShellSidebarProps extends React.HTMLAttributes<HTMLDivElement> {}
|
|
518
|
+
declare const ShellSidebar: React.ForwardRefExoticComponent<ShellSidebarProps & React.RefAttributes<HTMLDivElement>>;
|
|
519
|
+
interface ShellMainProps extends React.HTMLAttributes<HTMLDivElement> {}
|
|
520
|
+
declare const ShellMain: React.ForwardRefExoticComponent<ShellMainProps & React.RefAttributes<HTMLDivElement>>;
|
|
521
|
+
interface ShellHeaderProps extends React.HTMLAttributes<HTMLDivElement> {}
|
|
522
|
+
declare const ShellHeader: React.ForwardRefExoticComponent<ShellHeaderProps & React.RefAttributes<HTMLDivElement>>;
|
|
523
|
+
interface ShellContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
524
|
+
scrollable?: boolean;
|
|
525
|
+
}
|
|
526
|
+
declare const ShellContent: React.ForwardRefExoticComponent<ShellContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
527
|
+
interface ShellFooterProps extends React.HTMLAttributes<HTMLDivElement> {}
|
|
528
|
+
declare const ShellFooter: React.ForwardRefExoticComponent<ShellFooterProps & React.RefAttributes<HTMLDivElement>>;
|
|
529
|
+
//#endregion
|
|
530
|
+
//#region src/components/layout/sidebar.d.ts
|
|
531
|
+
declare const sidebarVariants: (props?: ({
|
|
532
|
+
collapsed?: boolean | null | undefined;
|
|
533
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
534
|
+
interface SidebarProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof sidebarVariants> {
|
|
535
|
+
collapsed?: boolean;
|
|
536
|
+
onCollapsedChange?: (collapsed: boolean) => void;
|
|
537
|
+
header?: React.ReactNode;
|
|
538
|
+
footer?: React.ReactNode;
|
|
539
|
+
}
|
|
540
|
+
declare function useSidebar(): {
|
|
541
|
+
collapsed: boolean;
|
|
542
|
+
setCollapsed: (collapsed: boolean) => void;
|
|
543
|
+
};
|
|
544
|
+
declare const Sidebar: React.ForwardRefExoticComponent<SidebarProps & React.RefAttributes<HTMLDivElement>>;
|
|
545
|
+
interface SidebarToggleProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {}
|
|
546
|
+
declare const SidebarToggle: React.ForwardRefExoticComponent<SidebarToggleProps & React.RefAttributes<HTMLButtonElement>>;
|
|
547
|
+
interface SidebarSectionProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
548
|
+
title?: string;
|
|
549
|
+
}
|
|
550
|
+
declare const SidebarSection: React.ForwardRefExoticComponent<SidebarSectionProps & React.RefAttributes<HTMLDivElement>>;
|
|
551
|
+
interface SidebarItemProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
552
|
+
icon?: LucideIcon;
|
|
553
|
+
active?: boolean;
|
|
554
|
+
badge?: React.ReactNode;
|
|
555
|
+
}
|
|
556
|
+
declare const SidebarItem: React.ForwardRefExoticComponent<SidebarItemProps & React.RefAttributes<HTMLButtonElement>>;
|
|
557
|
+
interface SidebarLinkProps extends React.AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
558
|
+
icon?: LucideIcon;
|
|
559
|
+
active?: boolean;
|
|
560
|
+
badge?: React.ReactNode;
|
|
561
|
+
}
|
|
562
|
+
declare const SidebarLink: React.ForwardRefExoticComponent<SidebarLinkProps & React.RefAttributes<HTMLAnchorElement>>;
|
|
563
|
+
//#endregion
|
|
564
|
+
//#region src/components/layout/split-pane.d.ts
|
|
565
|
+
interface SplitPaneProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
566
|
+
/** Direction of the split */
|
|
567
|
+
direction?: 'horizontal' | 'vertical';
|
|
568
|
+
/** Initial size of the first pane (in pixels or percentage) */
|
|
569
|
+
defaultSize?: number | string;
|
|
570
|
+
/** Minimum size of the first pane in pixels */
|
|
571
|
+
minSize?: number;
|
|
572
|
+
/** Maximum size of the first pane in pixels */
|
|
573
|
+
maxSize?: number;
|
|
574
|
+
/** Called when the pane size changes */
|
|
575
|
+
onSizeChange?: (size: number) => void;
|
|
576
|
+
/** Whether to show the resize handle */
|
|
577
|
+
resizable?: boolean;
|
|
578
|
+
}
|
|
579
|
+
declare const SplitPane: React.ForwardRefExoticComponent<SplitPaneProps & React.RefAttributes<HTMLDivElement>>;
|
|
580
|
+
interface SplitPanePanelProps extends React.HTMLAttributes<HTMLDivElement> {}
|
|
581
|
+
declare const SplitPanePanel: React.ForwardRefExoticComponent<SplitPanePanelProps & React.RefAttributes<HTMLDivElement>>;
|
|
582
|
+
//#endregion
|
|
583
|
+
//#region src/components/ui/badge.d.ts
|
|
584
|
+
declare const badgeVariants: (props?: ({
|
|
585
|
+
variant?: "default" | "success" | "warning" | "info" | "secondary" | "destructive" | "outline" | "get" | "post" | "put" | "patch" | "delete" | null | undefined;
|
|
586
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
587
|
+
interface BadgeProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {}
|
|
588
|
+
declare function Badge({
|
|
589
|
+
className,
|
|
590
|
+
variant,
|
|
591
|
+
...props
|
|
592
|
+
}: BadgeProps): react_jsx_runtime20.JSX.Element;
|
|
593
|
+
//#endregion
|
|
594
|
+
//#region src/components/ui/button.d.ts
|
|
595
|
+
declare const buttonVariants: (props?: ({
|
|
596
|
+
variant?: "default" | "secondary" | "destructive" | "outline" | "ghost" | "link" | null | undefined;
|
|
597
|
+
size?: "sm" | "lg" | "default" | "icon" | null | undefined;
|
|
598
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
599
|
+
interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
600
|
+
asChild?: boolean;
|
|
601
|
+
}
|
|
602
|
+
declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
603
|
+
//#endregion
|
|
604
|
+
//#region src/components/ui/card.d.ts
|
|
605
|
+
declare const Card: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
606
|
+
declare const CardHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
607
|
+
declare const CardTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
608
|
+
declare const CardDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
609
|
+
declare const CardContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
610
|
+
declare const CardFooter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
611
|
+
//#endregion
|
|
612
|
+
//#region src/components/ui/code-block.d.ts
|
|
613
|
+
interface CodeBlockProps {
|
|
614
|
+
code: string;
|
|
615
|
+
language?: string;
|
|
616
|
+
showLineNumbers?: boolean;
|
|
617
|
+
className?: string;
|
|
618
|
+
}
|
|
619
|
+
declare const CodeBlock: React.ForwardRefExoticComponent<CodeBlockProps & React.RefAttributes<HTMLPreElement>>;
|
|
620
|
+
//#endregion
|
|
621
|
+
//#region src/components/ui/dialog.d.ts
|
|
622
|
+
declare const Dialog: React.FC<DialogPrimitive.DialogProps>;
|
|
623
|
+
declare const DialogTrigger: React.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
624
|
+
declare const DialogPortal: React.FC<DialogPrimitive.DialogPortalProps>;
|
|
625
|
+
declare const DialogClose: React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
|
|
626
|
+
declare const DialogOverlay: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
627
|
+
declare const DialogContent: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
628
|
+
declare const DialogHeader: {
|
|
629
|
+
({
|
|
630
|
+
className,
|
|
631
|
+
...props
|
|
632
|
+
}: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime20.JSX.Element;
|
|
633
|
+
displayName: string;
|
|
634
|
+
};
|
|
635
|
+
declare const DialogFooter: {
|
|
636
|
+
({
|
|
637
|
+
className,
|
|
638
|
+
...props
|
|
639
|
+
}: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime20.JSX.Element;
|
|
640
|
+
displayName: string;
|
|
641
|
+
};
|
|
642
|
+
declare const DialogTitle: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
|
|
643
|
+
declare const DialogDescription: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
|
|
644
|
+
//#endregion
|
|
645
|
+
//#region src/components/ui/dropdown-menu.d.ts
|
|
646
|
+
declare const DropdownMenu: React.FC<DropdownMenuPrimitive.DropdownMenuProps>;
|
|
647
|
+
declare const DropdownMenuTrigger: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
648
|
+
declare const DropdownMenuGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
649
|
+
declare const DropdownMenuPortal: React.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
|
|
650
|
+
declare const DropdownMenuSub: React.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
|
|
651
|
+
declare const DropdownMenuRadioGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
652
|
+
declare const DropdownMenuSubTrigger: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
653
|
+
inset?: boolean;
|
|
654
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
655
|
+
declare const DropdownMenuSubContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
656
|
+
declare const DropdownMenuContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
657
|
+
declare const DropdownMenuItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
658
|
+
inset?: boolean;
|
|
659
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
660
|
+
declare const DropdownMenuCheckboxItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
661
|
+
declare const DropdownMenuRadioItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
662
|
+
declare const DropdownMenuLabel: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
663
|
+
inset?: boolean;
|
|
664
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
665
|
+
declare const DropdownMenuSeparator: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
666
|
+
declare const DropdownMenuShortcut: {
|
|
667
|
+
({
|
|
668
|
+
className,
|
|
669
|
+
...props
|
|
670
|
+
}: React.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime20.JSX.Element;
|
|
671
|
+
displayName: string;
|
|
672
|
+
};
|
|
673
|
+
//#endregion
|
|
674
|
+
//#region src/components/ui/input.d.ts
|
|
675
|
+
declare const Input: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
676
|
+
//#endregion
|
|
677
|
+
//#region src/components/ui/label.d.ts
|
|
678
|
+
declare const Label: React.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: class_variance_authority_types0.ClassProp | undefined) => string> & React.RefAttributes<HTMLLabelElement>>;
|
|
679
|
+
//#endregion
|
|
680
|
+
//#region src/components/ui/scroll-area.d.ts
|
|
681
|
+
declare const ScrollArea: React.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
682
|
+
declare const ScrollBar: React.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaScrollbarProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
683
|
+
//#endregion
|
|
684
|
+
//#region src/components/ui/select.d.ts
|
|
685
|
+
declare const Select: React.FC<SelectPrimitive.SelectProps>;
|
|
686
|
+
declare const SelectGroup: React.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
687
|
+
declare const SelectValue: React.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React.RefAttributes<HTMLSpanElement>>;
|
|
688
|
+
declare const SelectTrigger: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
689
|
+
declare const SelectScrollUpButton: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollUpButtonProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
690
|
+
declare const SelectScrollDownButton: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollDownButtonProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
691
|
+
declare const SelectContent: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
692
|
+
declare const SelectLabel: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectLabelProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
693
|
+
declare const SelectItem: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
694
|
+
declare const SelectSeparator: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectSeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
695
|
+
//#endregion
|
|
696
|
+
//#region src/components/ui/separator.d.ts
|
|
697
|
+
declare const Separator: React.ForwardRefExoticComponent<Omit<SeparatorPrimitive.SeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
698
|
+
//#endregion
|
|
699
|
+
//#region src/components/ui/table.d.ts
|
|
700
|
+
declare const Table: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableElement> & React.RefAttributes<HTMLTableElement>>;
|
|
701
|
+
declare const TableHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableSectionElement> & React.RefAttributes<HTMLTableSectionElement>>;
|
|
702
|
+
declare const TableBody: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableSectionElement> & React.RefAttributes<HTMLTableSectionElement>>;
|
|
703
|
+
declare const TableFooter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableSectionElement> & React.RefAttributes<HTMLTableSectionElement>>;
|
|
704
|
+
declare const TableRow: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableRowElement> & React.RefAttributes<HTMLTableRowElement>>;
|
|
705
|
+
declare const TableHead: React.ForwardRefExoticComponent<React.ThHTMLAttributes<HTMLTableCellElement> & React.RefAttributes<HTMLTableCellElement>>;
|
|
706
|
+
declare const TableCell: React.ForwardRefExoticComponent<React.TdHTMLAttributes<HTMLTableCellElement> & React.RefAttributes<HTMLTableCellElement>>;
|
|
707
|
+
declare const TableCaption: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableCaptionElement> & React.RefAttributes<HTMLTableCaptionElement>>;
|
|
708
|
+
//#endregion
|
|
709
|
+
//#region src/components/ui/tabs.d.ts
|
|
710
|
+
declare const Tabs: React.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React.RefAttributes<HTMLDivElement>>;
|
|
711
|
+
declare const TabsList: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
712
|
+
declare const TabsTrigger: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
713
|
+
declare const TabsContent: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
714
|
+
//#endregion
|
|
715
|
+
//#region src/components/ui/tooltip.d.ts
|
|
716
|
+
declare const TooltipProvider: React.FC<TooltipPrimitive.TooltipProviderProps>;
|
|
717
|
+
declare const Tooltip: React.FC<TooltipPrimitive.TooltipProps>;
|
|
718
|
+
declare const TooltipTrigger: React.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
719
|
+
declare const TooltipContent: React.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
720
|
+
//#endregion
|
|
721
|
+
//#region src/lib/utils.d.ts
|
|
722
|
+
declare function cn(...inputs: ClassValue[]): string;
|
|
723
|
+
//# sourceMappingURL=utils.d.ts.map
|
|
724
|
+
|
|
725
|
+
//#endregion
|
|
726
|
+
export { AreaTimeSeriesChart, AreaTimeSeriesChartProps, Badge, BadgeProps, BarListChart, BarListChartProps, BarListItem, BreadcrumbItem, Button, ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CodeBlock, CodeBlockProps, ConnectionStatus, ConnectionStatusProps, DataTable, DataTableColumn, DataTableProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, EmptyStateProps, Header, HeaderActions, HeaderActionsProps, HeaderBreadcrumbs, HeaderBreadcrumbsProps, HeaderDescription, HeaderDescriptionProps, HeaderGroup, HeaderGroupProps, HeaderProps, HeaderTitle, HeaderTitleProps, HttpMethod, HttpMethodBadge, HttpMethodBadgeProps, HttpStatusBadge, HttpStatusBadgeProps, Input, JsonViewer, JsonViewerProps, Label, LatencyPercentilesChart, LatencyPercentilesChartProps, LiveIndicator, LiveIndicatorProps, LoadingContainer, LoadingContainerProps, LoadingDots, LoadingDotsProps, LoadingOverlay, LoadingOverlayProps, LogLevel, LogLevelBadge, LogLevelBadgeProps, MetricCard, MetricCardProps, NoData, NoDataProps, NoResults, NoResultsProps, NotFound, NotFoundProps, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, ServerError, ServerErrorProps, Shell, ShellContent, ShellContentProps, ShellFooter, ShellFooterProps, ShellHeader, ShellHeaderProps, ShellMain, ShellMainProps, ShellProps, ShellSidebar, ShellSidebarProps, Sidebar, SidebarItem, SidebarItemProps, SidebarLink, SidebarLinkProps, SidebarProps, SidebarSection, SidebarSectionProps, SidebarToggle, SidebarToggleProps, Skeleton, SkeletonProps, SparkBar, SparkBarProps, Sparkline, SparklineProps, Spinner, SpinnerProps, SplitPane, SplitPanePanel, SplitPanePanelProps, SplitPaneProps, StatusBadge, StatusBadgeProps, StatusDistributionChart, StatusDistributionChartProps, StatusDistributionData, StatusRange, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Theme, ThemeColors, TimeRange, TimeRangePreset, TimeRangeSelector, TimeRangeSelectorProps, TimeSeriesDataPoint, Timeline, TimelineConnector, TimelineConnectorProps, TimelineContent, TimelineContentProps, TimelineDescription, TimelineDescriptionProps, TimelineIndicator, TimelineIndicatorProps, TimelineItem, TimelineItemProps, TimelineProps, TimelineTime, TimelineTimeProps, TimelineTitle, TimelineTitleProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, UseWebSocketOptions, UseWebSocketReturn, WebSocketStatus, badgeVariants, buttonVariants, cn, createTimeRange, emptyStateVariants, getLogLevelColor, getMethodColor, getStatusColor, liveIndicatorVariants, loadingOverlayVariants, sidebarVariants, spinnerVariants, statusBadgeVariants, theme, timelineIndicatorVariants, timelineItemVariants, timelineVariants, useDebounce, useLocalStorage, useSidebar, useWebSocket };
|
|
727
|
+
//# sourceMappingURL=index.d.cts.map
|