uidex 0.2.4 → 0.3.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/README.md +253 -353
- package/dist/cli/cli.cjs +3243 -0
- package/dist/cli/cli.cjs.map +1 -0
- package/dist/cloud/index.cjs +149 -0
- package/dist/cloud/index.cjs.map +1 -0
- package/dist/cloud/index.d.cts +108 -0
- package/dist/cloud/index.d.ts +108 -0
- package/dist/cloud/index.js +120 -0
- package/dist/cloud/index.js.map +1 -0
- package/dist/headless/index.cjs +3580 -0
- package/dist/headless/index.cjs.map +1 -0
- package/dist/headless/index.d.cts +214 -0
- package/dist/headless/index.d.ts +214 -0
- package/dist/headless/index.js +3562 -0
- package/dist/headless/index.js.map +1 -0
- package/dist/index.cjs +6902 -9801
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +901 -146
- package/dist/index.d.ts +901 -146
- package/dist/index.js +6896 -9805
- package/dist/index.js.map +1 -1
- package/dist/playwright/index.cjs +164 -24
- package/dist/playwright/index.cjs.map +1 -1
- package/dist/playwright/index.d.cts +30 -53
- package/dist/playwright/index.d.ts +30 -53
- package/dist/playwright/index.js +148 -21
- package/dist/playwright/index.js.map +1 -1
- package/dist/playwright/reporter.cjs +62 -28
- package/dist/playwright/reporter.cjs.map +1 -1
- package/dist/playwright/reporter.d.cts +24 -12
- package/dist/playwright/reporter.d.ts +24 -12
- package/dist/playwright/reporter.js +62 -28
- package/dist/playwright/reporter.js.map +1 -1
- package/dist/react/index.cjs +6936 -9808
- package/dist/react/index.cjs.map +1 -1
- package/dist/react/index.d.cts +673 -146
- package/dist/react/index.d.ts +673 -146
- package/dist/react/index.js +6980 -9811
- package/dist/react/index.js.map +1 -1
- package/dist/scan/index.cjs +3281 -0
- package/dist/scan/index.cjs.map +1 -0
- package/dist/scan/index.d.cts +373 -0
- package/dist/scan/index.d.ts +373 -0
- package/dist/scan/index.js +3224 -0
- package/dist/scan/index.js.map +1 -0
- package/package.json +71 -65
- package/templates/claude/audit.md +37 -0
- package/templates/claude/rules.md +212 -0
- package/claude/audit-command.md +0 -46
- package/claude/rules.md +0 -167
- package/dist/api/index.cjs +0 -254
- package/dist/api/index.cjs.map +0 -1
- package/dist/api/index.d.cts +0 -236
- package/dist/api/index.d.ts +0 -236
- package/dist/api/index.js +0 -226
- package/dist/api/index.js.map +0 -1
- package/dist/core/index.cjs +0 -11045
- package/dist/core/index.cjs.map +0 -1
- package/dist/core/index.d.cts +0 -424
- package/dist/core/index.d.ts +0 -424
- package/dist/core/index.global.js +0 -66516
- package/dist/core/index.global.js.map +0 -1
- package/dist/core/index.js +0 -10995
- package/dist/core/index.js.map +0 -1
- package/dist/core/style.css +0 -1529
- package/dist/scripts/cli.cjs +0 -3904
- package/uidex.schema.json +0 -93
package/dist/core/index.d.cts
DELETED
|
@@ -1,424 +0,0 @@
|
|
|
1
|
-
type BorderStyle = 'solid' | 'dashed' | 'dotted';
|
|
2
|
-
type LabelPosition = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
|
|
3
|
-
type ButtonPosition = 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left';
|
|
4
|
-
interface UidexDefaults {
|
|
5
|
-
color?: string;
|
|
6
|
-
borderStyle?: BorderStyle;
|
|
7
|
-
borderWidth?: number;
|
|
8
|
-
}
|
|
9
|
-
interface UidexConfig {
|
|
10
|
-
defaults?: UidexDefaults;
|
|
11
|
-
colors?: Record<string, string>;
|
|
12
|
-
}
|
|
13
|
-
type UidexKind = 'block' | 'component' | 'primitive';
|
|
14
|
-
interface UidexLocation {
|
|
15
|
-
filePath: string;
|
|
16
|
-
line: number;
|
|
17
|
-
kind: UidexKind;
|
|
18
|
-
doc?: string;
|
|
19
|
-
scopes?: string[];
|
|
20
|
-
}
|
|
21
|
-
type UidexMap = Record<string, UidexLocation[]>;
|
|
22
|
-
interface PrimitiveEntry {
|
|
23
|
-
name: string;
|
|
24
|
-
filePath: string;
|
|
25
|
-
scope: string;
|
|
26
|
-
composes: string[];
|
|
27
|
-
usedBy: string[];
|
|
28
|
-
kind: 'primitive';
|
|
29
|
-
}
|
|
30
|
-
interface UidexPage {
|
|
31
|
-
dir: string;
|
|
32
|
-
content: string;
|
|
33
|
-
description?: string;
|
|
34
|
-
componentIds: string[];
|
|
35
|
-
rootId?: string;
|
|
36
|
-
}
|
|
37
|
-
interface UidexFeature {
|
|
38
|
-
dir: string;
|
|
39
|
-
content: string;
|
|
40
|
-
description?: string;
|
|
41
|
-
componentIds: string[];
|
|
42
|
-
}
|
|
43
|
-
interface KeyboardShortcut {
|
|
44
|
-
key: string;
|
|
45
|
-
ctrlKey?: boolean;
|
|
46
|
-
shiftKey?: boolean;
|
|
47
|
-
altKey?: boolean;
|
|
48
|
-
metaKey?: boolean;
|
|
49
|
-
}
|
|
50
|
-
interface IngestConfig {
|
|
51
|
-
endpoint: string;
|
|
52
|
-
apiKey: string;
|
|
53
|
-
environment?: string;
|
|
54
|
-
appVersion?: string;
|
|
55
|
-
reporter?: {
|
|
56
|
-
email?: string;
|
|
57
|
-
name?: string;
|
|
58
|
-
};
|
|
59
|
-
metadata?: Record<string, string>;
|
|
60
|
-
captureConsole?: boolean;
|
|
61
|
-
captureNetwork?: boolean;
|
|
62
|
-
}
|
|
63
|
-
type FeedbackResult = {
|
|
64
|
-
ok: true;
|
|
65
|
-
id: string;
|
|
66
|
-
sequenceNumber: number;
|
|
67
|
-
} | {
|
|
68
|
-
ok: false;
|
|
69
|
-
error: string;
|
|
70
|
-
};
|
|
71
|
-
type UidexTheme = 'dark' | 'light' | 'auto';
|
|
72
|
-
interface UidexUIOptions {
|
|
73
|
-
components?: UidexMap;
|
|
74
|
-
pages?: UidexPage[];
|
|
75
|
-
features?: UidexFeature[];
|
|
76
|
-
uiComponents?: PrimitiveEntry[];
|
|
77
|
-
config?: UidexConfig;
|
|
78
|
-
buttonPosition?: ButtonPosition;
|
|
79
|
-
/** Theme for the devtools widget. Default: 'auto'. */
|
|
80
|
-
theme?: UidexTheme;
|
|
81
|
-
onSelect?: (id: string) => void;
|
|
82
|
-
/** Keyboard shortcut to toggle inspect mode. Set to false to disable. */
|
|
83
|
-
inspectShortcut?: KeyboardShortcut | false;
|
|
84
|
-
/** Ingest configuration for submitting feedback to a server. */
|
|
85
|
-
ingest?: IngestConfig;
|
|
86
|
-
/** Called after feedback submission with the report and result. */
|
|
87
|
-
onSubmit?: (report: FeedbackReport, result: FeedbackResult) => void;
|
|
88
|
-
}
|
|
89
|
-
type FeedbackType = 'bug' | 'feature' | 'improvement' | 'question';
|
|
90
|
-
type FeedbackSeverity = 'low' | 'medium' | 'high' | 'critical';
|
|
91
|
-
interface ConsoleLogEntry {
|
|
92
|
-
level: 'warn' | 'error';
|
|
93
|
-
message: string;
|
|
94
|
-
timestamp: string;
|
|
95
|
-
}
|
|
96
|
-
interface NetworkErrorEntry {
|
|
97
|
-
url: string;
|
|
98
|
-
method: string;
|
|
99
|
-
status: number | null;
|
|
100
|
-
statusText: string;
|
|
101
|
-
timestamp: string;
|
|
102
|
-
}
|
|
103
|
-
interface FeedbackReport {
|
|
104
|
-
type: FeedbackType;
|
|
105
|
-
severity: FeedbackSeverity;
|
|
106
|
-
title?: string;
|
|
107
|
-
description: string;
|
|
108
|
-
componentId: string;
|
|
109
|
-
element: string | null;
|
|
110
|
-
sources: {
|
|
111
|
-
filePath: string;
|
|
112
|
-
line: number;
|
|
113
|
-
}[];
|
|
114
|
-
url: string;
|
|
115
|
-
path: string;
|
|
116
|
-
route: string | null;
|
|
117
|
-
timestamp: string;
|
|
118
|
-
pageTitle: string;
|
|
119
|
-
pageDescription?: string;
|
|
120
|
-
locale: string;
|
|
121
|
-
sessionId: string;
|
|
122
|
-
viewport: {
|
|
123
|
-
width: number;
|
|
124
|
-
height: number;
|
|
125
|
-
};
|
|
126
|
-
screen: {
|
|
127
|
-
width: number;
|
|
128
|
-
height: number;
|
|
129
|
-
};
|
|
130
|
-
userAgent: string;
|
|
131
|
-
screenshot?: string;
|
|
132
|
-
reporterEmail?: string;
|
|
133
|
-
reporterName?: string;
|
|
134
|
-
environment?: string;
|
|
135
|
-
appVersion?: string;
|
|
136
|
-
metadata?: Record<string, string>;
|
|
137
|
-
consoleLogs?: ConsoleLogEntry[];
|
|
138
|
-
networkErrors?: NetworkErrorEntry[];
|
|
139
|
-
gitBranch?: string;
|
|
140
|
-
gitCommit?: string;
|
|
141
|
-
contextId?: string;
|
|
142
|
-
}
|
|
143
|
-
interface GitContext {
|
|
144
|
-
branch: string;
|
|
145
|
-
commit?: string;
|
|
146
|
-
}
|
|
147
|
-
interface OverlayOptions {
|
|
148
|
-
color?: string;
|
|
149
|
-
borderStyle?: BorderStyle;
|
|
150
|
-
borderWidth?: number;
|
|
151
|
-
colors?: Record<string, string>;
|
|
152
|
-
/** Outward padding in pixels — expands the overlay beyond the target rect. */
|
|
153
|
-
padding?: number;
|
|
154
|
-
/** Opacity of the overlay border (0–1). */
|
|
155
|
-
opacity?: number;
|
|
156
|
-
/** Opacity of the semi-transparent background fill (0–1). Default 0.08. */
|
|
157
|
-
fillOpacity?: number;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
declare class UidexUI {
|
|
161
|
-
private menu;
|
|
162
|
-
private overlay;
|
|
163
|
-
private blockOverlay;
|
|
164
|
-
private modal;
|
|
165
|
-
private inspector;
|
|
166
|
-
private options;
|
|
167
|
-
private mounted;
|
|
168
|
-
private shadowHost;
|
|
169
|
-
private shadowRoot;
|
|
170
|
-
private themeWrapper;
|
|
171
|
-
private observer;
|
|
172
|
-
private refreshTimer;
|
|
173
|
-
private copyTimer;
|
|
174
|
-
private currentPresentIds;
|
|
175
|
-
private activeMode;
|
|
176
|
-
private sessionId;
|
|
177
|
-
private capture;
|
|
178
|
-
private theme;
|
|
179
|
-
private mediaQuery;
|
|
180
|
-
private boundMediaChange;
|
|
181
|
-
private classObserver;
|
|
182
|
-
private cursorTooltip;
|
|
183
|
-
private pinnedOverlays;
|
|
184
|
-
constructor(options?: UidexUIOptions);
|
|
185
|
-
mount(container?: HTMLElement): void;
|
|
186
|
-
/** Change the widget theme at runtime. */
|
|
187
|
-
setTheme(theme: UidexTheme): void;
|
|
188
|
-
private resolveAutoTheme;
|
|
189
|
-
private cleanupThemeListeners;
|
|
190
|
-
private applyTheme;
|
|
191
|
-
destroy(): void;
|
|
192
|
-
startInspect(): void;
|
|
193
|
-
stopInspect(): void;
|
|
194
|
-
isInspecting(): boolean;
|
|
195
|
-
/** Open the command palette. */
|
|
196
|
-
openCommand(): void;
|
|
197
|
-
/** Open the page dialog. */
|
|
198
|
-
openPage(dir?: string): void;
|
|
199
|
-
/** Cycle through inspect modes: inspect → copy → feedback → off. */
|
|
200
|
-
private cycleMode;
|
|
201
|
-
/** Set a specific inspect mode directly. */
|
|
202
|
-
private setMode;
|
|
203
|
-
private getComponentsMap;
|
|
204
|
-
private getPagesArray;
|
|
205
|
-
private getFeaturesArray;
|
|
206
|
-
private extractPageTitle;
|
|
207
|
-
/** Page button handler. */
|
|
208
|
-
private handlePageClick;
|
|
209
|
-
/** Match current URL pathname to a page dir. */
|
|
210
|
-
private matchCurrentRoute;
|
|
211
|
-
/** Format a page dir as a route by stripping prefix segments and route groups. */
|
|
212
|
-
private formatRoute;
|
|
213
|
-
/** Check if a route pattern matches a pathname, handling dynamic segments. */
|
|
214
|
-
private routeMatches;
|
|
215
|
-
/** Command button handler. */
|
|
216
|
-
private handleCommandClick;
|
|
217
|
-
/** Selection handler — routes by active mode. */
|
|
218
|
-
private handleSelect;
|
|
219
|
-
private clearPinnedOverlays;
|
|
220
|
-
private handleCopySelect;
|
|
221
|
-
private findElement;
|
|
222
|
-
private scrollAndHighlight;
|
|
223
|
-
private get overlayConfig();
|
|
224
|
-
private lastHighlightedElement;
|
|
225
|
-
private handleHighlight;
|
|
226
|
-
/** Detect which components live inside which blocks via DOM ancestry. */
|
|
227
|
-
private scanBlockContainment;
|
|
228
|
-
/** Push current pages/features/components/presentIds to the modal. */
|
|
229
|
-
private updateModalData;
|
|
230
|
-
/** Scan which registered component IDs are currently in the DOM. */
|
|
231
|
-
private scanPresentIds;
|
|
232
|
-
/** Schedule a debounced refresh of the modal data after DOM mutations. */
|
|
233
|
-
private scheduleRefresh;
|
|
234
|
-
/** Re-scan the DOM and update modal data if the set of present IDs changed. */
|
|
235
|
-
private refresh;
|
|
236
|
-
private startObserving;
|
|
237
|
-
private stopObserving;
|
|
238
|
-
}
|
|
239
|
-
declare function createUidexUI(options?: UidexUIOptions): UidexUI;
|
|
240
|
-
|
|
241
|
-
type ActiveMode = 'inspect' | 'copy' | 'feedback' | null;
|
|
242
|
-
interface MenuOptions {
|
|
243
|
-
onInspectCycle?: () => void;
|
|
244
|
-
onModeSelect?: (mode: 'inspect' | 'copy' | 'feedback' | null) => void;
|
|
245
|
-
onPageClick?: () => void;
|
|
246
|
-
onCommandClick?: () => void;
|
|
247
|
-
}
|
|
248
|
-
declare class Menu {
|
|
249
|
-
private host;
|
|
250
|
-
private root;
|
|
251
|
-
private options;
|
|
252
|
-
private activeMode;
|
|
253
|
-
private hasPages;
|
|
254
|
-
private positionClass;
|
|
255
|
-
private container;
|
|
256
|
-
constructor(options?: MenuOptions);
|
|
257
|
-
setPosition(position: ButtonPosition): void;
|
|
258
|
-
getContainer(): HTMLDivElement | null;
|
|
259
|
-
setActiveMode(mode: ActiveMode): void;
|
|
260
|
-
setHasPages(has: boolean): void;
|
|
261
|
-
setContainer(el: HTMLElement | null): void;
|
|
262
|
-
create(): HTMLDivElement;
|
|
263
|
-
destroy(): void;
|
|
264
|
-
private render;
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
type ModalPage = UidexPage & {
|
|
268
|
-
title: string;
|
|
269
|
-
description?: string;
|
|
270
|
-
};
|
|
271
|
-
type ModalFeature = UidexFeature & {
|
|
272
|
-
title: string;
|
|
273
|
-
};
|
|
274
|
-
interface ModalData {
|
|
275
|
-
pages: ModalPage[];
|
|
276
|
-
features: ModalFeature[];
|
|
277
|
-
components: UidexMap;
|
|
278
|
-
presentIds: Set<string>;
|
|
279
|
-
blockContainment: Map<string, string[]>;
|
|
280
|
-
uiComponents: Map<string, PrimitiveEntry>;
|
|
281
|
-
}
|
|
282
|
-
interface ModalOptions {
|
|
283
|
-
onComponentNavigate?: (id: string) => void;
|
|
284
|
-
onLocate?: (id: string) => void;
|
|
285
|
-
elementGetter?: (id: string) => Element | null;
|
|
286
|
-
ingest?: IngestConfig;
|
|
287
|
-
onSubmit?: (report: FeedbackReport, result: FeedbackResult) => void;
|
|
288
|
-
sessionId?: string;
|
|
289
|
-
getConsoleLogs?: () => ConsoleLogEntry[];
|
|
290
|
-
getNetworkErrors?: () => NetworkErrorEntry[];
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
declare class ModalManager {
|
|
294
|
-
private container;
|
|
295
|
-
private host;
|
|
296
|
-
private root;
|
|
297
|
-
private store;
|
|
298
|
-
private options;
|
|
299
|
-
constructor(options?: ModalOptions);
|
|
300
|
-
setContainer(el: HTMLElement): void;
|
|
301
|
-
setData(data: ModalData): void;
|
|
302
|
-
openCommand(): void;
|
|
303
|
-
openPage(dir?: string): void;
|
|
304
|
-
openComponent(id: string): void;
|
|
305
|
-
openUi(filePath: string): void;
|
|
306
|
-
openFeedback(id: string): void;
|
|
307
|
-
closeAll(): void;
|
|
308
|
-
isOpen(): boolean;
|
|
309
|
-
destroy(): void;
|
|
310
|
-
private ensureMounted;
|
|
311
|
-
private render;
|
|
312
|
-
}
|
|
313
|
-
|
|
314
|
-
declare class Overlay {
|
|
315
|
-
private element;
|
|
316
|
-
private target;
|
|
317
|
-
private baseOptions;
|
|
318
|
-
private options;
|
|
319
|
-
private boundUpdatePosition;
|
|
320
|
-
private rafId;
|
|
321
|
-
constructor(options?: OverlayOptions);
|
|
322
|
-
show(target: HTMLElement, overrides?: Partial<OverlayOptions>): void;
|
|
323
|
-
hide(): void;
|
|
324
|
-
destroy(): void;
|
|
325
|
-
updateOptions(options: Partial<OverlayOptions>): void;
|
|
326
|
-
private createElement;
|
|
327
|
-
private updateStyles;
|
|
328
|
-
private updatePosition;
|
|
329
|
-
private addListeners;
|
|
330
|
-
private removeListeners;
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
interface InspectorOptions {
|
|
334
|
-
shortcut?: KeyboardShortcut;
|
|
335
|
-
onHighlight?: (element: HTMLElement | null, id: string | null, parentBlock?: {
|
|
336
|
-
element: HTMLElement;
|
|
337
|
-
id: string;
|
|
338
|
-
} | null, cursor?: {
|
|
339
|
-
x: number;
|
|
340
|
-
y: number;
|
|
341
|
-
} | null) => void;
|
|
342
|
-
onSelect?: (element: HTMLElement, id: string, opts?: {
|
|
343
|
-
persistent?: boolean;
|
|
344
|
-
}) => void;
|
|
345
|
-
onActivate?: () => void;
|
|
346
|
-
onDeactivate?: () => void;
|
|
347
|
-
}
|
|
348
|
-
declare class Inspector {
|
|
349
|
-
private active;
|
|
350
|
-
private shortcut;
|
|
351
|
-
private currentTarget;
|
|
352
|
-
private onHighlight;
|
|
353
|
-
private onSelect;
|
|
354
|
-
private onActivate;
|
|
355
|
-
private onDeactivate;
|
|
356
|
-
private boundKeyDown;
|
|
357
|
-
private boundMouseMove;
|
|
358
|
-
private boundClick;
|
|
359
|
-
constructor(options?: InspectorOptions);
|
|
360
|
-
mount(): void;
|
|
361
|
-
destroy(): void;
|
|
362
|
-
activate(): void;
|
|
363
|
-
deactivate(): void;
|
|
364
|
-
isActive(): boolean;
|
|
365
|
-
private handleKeyDown;
|
|
366
|
-
private handleMouseMove;
|
|
367
|
-
private handleClick;
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
declare class CursorTooltip {
|
|
371
|
-
private element;
|
|
372
|
-
show(x: number, y: number, label: string, color: string): void;
|
|
373
|
-
hide(): void;
|
|
374
|
-
destroy(): void;
|
|
375
|
-
private createElement;
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
/**
|
|
379
|
-
* Injects the uidex styles into a shadow root as a <style> element.
|
|
380
|
-
* This isolates all uidex CSS from the host page.
|
|
381
|
-
*/
|
|
382
|
-
declare function injectStyles(shadowRoot: ShadowRoot): void;
|
|
383
|
-
|
|
384
|
-
declare function registerComponents(components: UidexMap): void;
|
|
385
|
-
declare function getComponents(): UidexMap | null;
|
|
386
|
-
declare function registerPages(pages: UidexPage[]): void;
|
|
387
|
-
declare function getPages(): UidexPage[] | null;
|
|
388
|
-
declare function registerFeatures(features: UidexFeature[]): void;
|
|
389
|
-
declare function getFeatures(): UidexFeature[] | null;
|
|
390
|
-
declare function registerGitContext(ctx: GitContext): void;
|
|
391
|
-
declare function getGitContext(): GitContext | null;
|
|
392
|
-
|
|
393
|
-
declare function classNames(...classes: (string | undefined | null | false)[]): string;
|
|
394
|
-
declare function getContrastColor(hexColor: string): string;
|
|
395
|
-
declare function hexToRgba(hex: string, alpha: number): string;
|
|
396
|
-
declare function resolveColor(color: string | undefined, colorMap?: Record<string, string>): string | undefined;
|
|
397
|
-
|
|
398
|
-
declare class IngestCapture {
|
|
399
|
-
private captureConsole;
|
|
400
|
-
private captureNetwork;
|
|
401
|
-
private consoleLogs;
|
|
402
|
-
private networkErrors;
|
|
403
|
-
private originalConsoleWarn;
|
|
404
|
-
private originalConsoleError;
|
|
405
|
-
private originalFetch;
|
|
406
|
-
constructor(captureConsole: boolean, captureNetwork: boolean);
|
|
407
|
-
start(): void;
|
|
408
|
-
stop(): void;
|
|
409
|
-
getConsoleLogs(): ConsoleLogEntry[];
|
|
410
|
-
getNetworkErrors(): NetworkErrorEntry[];
|
|
411
|
-
private interceptConsole;
|
|
412
|
-
private addConsoleLog;
|
|
413
|
-
private restoreConsole;
|
|
414
|
-
private interceptNetwork;
|
|
415
|
-
private addNetworkError;
|
|
416
|
-
private restoreNetwork;
|
|
417
|
-
}
|
|
418
|
-
declare function generateSessionId(): string;
|
|
419
|
-
declare function submitFeedback(endpoint: string, apiKey: string, report: FeedbackReport): Promise<{
|
|
420
|
-
id: string;
|
|
421
|
-
sequenceNumber: number;
|
|
422
|
-
}>;
|
|
423
|
-
|
|
424
|
-
export { type BorderStyle, type ButtonPosition, type ConsoleLogEntry, CursorTooltip, type FeedbackReport, type FeedbackResult, type FeedbackSeverity, type FeedbackType, type GitContext, IngestCapture, type IngestConfig, Inspector, type KeyboardShortcut, type LabelPosition, Menu, ModalManager as Modal, type ModalData, type ModalFeature, ModalManager, type ModalOptions, type ModalPage, type NetworkErrorEntry, Overlay, type OverlayOptions, type PrimitiveEntry, type UidexConfig, type UidexDefaults, type UidexFeature, type UidexLocation, type UidexMap, type UidexPage, type UidexTheme, UidexUI, type UidexUIOptions, classNames, createUidexUI, generateSessionId, getComponents, getContrastColor, getFeatures, getGitContext, getPages, hexToRgba, injectStyles, registerComponents, registerFeatures, registerGitContext, registerPages, resolveColor, submitFeedback };
|