@particle-academy/react-fancy 2.10.0 → 3.0.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 +20 -0
- package/dist/index.cjs +1 -1941
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +40 -294
- package/dist/index.d.ts +40 -294
- package/dist/index.js +2 -1649
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/diagram.serializers-6RPUO46U.js +0 -273
- package/dist/diagram.serializers-6RPUO46U.js.map +0 -1
- package/docs/Canvas.md +0 -105
- package/docs/Diagram.md +0 -151
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import { ButtonHTMLAttributes, ReactNode, InputHTMLAttributes, TextareaHTMLAttributes, SelectHTMLAttributes, HTMLAttributes, ComponentType, ReactElement, RefObject
|
|
2
|
+
import { ButtonHTMLAttributes, ReactNode, InputHTMLAttributes, TextareaHTMLAttributes, SelectHTMLAttributes, HTMLAttributes, ComponentType, ReactElement, RefObject } from 'react';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
import { ClassValue } from 'clsx';
|
|
5
5
|
|
|
@@ -2184,298 +2184,6 @@ declare const Kanban: typeof KanbanRoot & {
|
|
|
2184
2184
|
|
|
2185
2185
|
declare function useKanban(): KanbanContextValue;
|
|
2186
2186
|
|
|
2187
|
-
interface ViewportState {
|
|
2188
|
-
panX: number;
|
|
2189
|
-
panY: number;
|
|
2190
|
-
zoom: number;
|
|
2191
|
-
}
|
|
2192
|
-
interface UsePanZoomOptions {
|
|
2193
|
-
viewport: ViewportState;
|
|
2194
|
-
setViewport: (vp: ViewportState | ((prev: ViewportState) => ViewportState)) => void;
|
|
2195
|
-
minZoom: number;
|
|
2196
|
-
maxZoom: number;
|
|
2197
|
-
pannable: boolean;
|
|
2198
|
-
zoomable: boolean;
|
|
2199
|
-
containerRef: React.RefObject<HTMLElement | null>;
|
|
2200
|
-
}
|
|
2201
|
-
interface UsePanZoomReturn {
|
|
2202
|
-
containerProps: {
|
|
2203
|
-
onPointerDown: (e: React.PointerEvent) => void;
|
|
2204
|
-
onPointerMove: (e: React.PointerEvent) => void;
|
|
2205
|
-
onPointerUp: (e: React.PointerEvent) => void;
|
|
2206
|
-
};
|
|
2207
|
-
isPanning: boolean;
|
|
2208
|
-
}
|
|
2209
|
-
declare function usePanZoom({ viewport, setViewport, minZoom, maxZoom, pannable, zoomable, containerRef, }: UsePanZoomOptions): UsePanZoomReturn;
|
|
2210
|
-
|
|
2211
|
-
interface NodeRect {
|
|
2212
|
-
x: number;
|
|
2213
|
-
y: number;
|
|
2214
|
-
width: number;
|
|
2215
|
-
height: number;
|
|
2216
|
-
}
|
|
2217
|
-
interface UseNodeRegistryReturn {
|
|
2218
|
-
registerNode: (id: string, rect: NodeRect) => void;
|
|
2219
|
-
unregisterNode: (id: string) => void;
|
|
2220
|
-
nodeRects: Map<string, NodeRect>;
|
|
2221
|
-
version: number;
|
|
2222
|
-
}
|
|
2223
|
-
declare function useNodeRegistry(): UseNodeRegistryReturn;
|
|
2224
|
-
|
|
2225
|
-
type EdgeAnchor = "top" | "bottom" | "left" | "right" | "center" | "auto";
|
|
2226
|
-
interface CanvasContextValue {
|
|
2227
|
-
viewport: ViewportState;
|
|
2228
|
-
setViewport: (vp: ViewportState | ((prev: ViewportState) => ViewportState)) => void;
|
|
2229
|
-
registerNode: (id: string, rect: NodeRect) => void;
|
|
2230
|
-
unregisterNode: (id: string) => void;
|
|
2231
|
-
nodeRects: Map<string, NodeRect>;
|
|
2232
|
-
registryVersion: number;
|
|
2233
|
-
containerRef: React.RefObject<HTMLDivElement | null>;
|
|
2234
|
-
/** Grid spacing in canvas-space pixels (unaffected by zoom). */
|
|
2235
|
-
gridSize: number;
|
|
2236
|
-
/** When true, dragged nodes snap their top-left corner to the grid. */
|
|
2237
|
-
snapToGrid: boolean;
|
|
2238
|
-
}
|
|
2239
|
-
type GridStyle = "dots" | "lines" | "none";
|
|
2240
|
-
interface CanvasProps {
|
|
2241
|
-
children: ReactNode;
|
|
2242
|
-
viewport?: ViewportState;
|
|
2243
|
-
defaultViewport?: ViewportState;
|
|
2244
|
-
onViewportChange?: (viewport: ViewportState) => void;
|
|
2245
|
-
minZoom?: number;
|
|
2246
|
-
maxZoom?: number;
|
|
2247
|
-
pannable?: boolean;
|
|
2248
|
-
zoomable?: boolean;
|
|
2249
|
-
/** Grid spacing in canvas-space pixels. Defaults to 20. */
|
|
2250
|
-
gridSize?: number;
|
|
2251
|
-
/** Show/hide the canvas grid. Defaults to false. */
|
|
2252
|
-
showGrid?: boolean;
|
|
2253
|
-
/** Grid pattern when shown — dots (default), lines, or none. Setting this
|
|
2254
|
-
* to "none" hides the grid even when `showGrid` is true. */
|
|
2255
|
-
gridStyle?: GridStyle;
|
|
2256
|
-
/** Grid color (any CSS color). Defaults to a faint zinc. */
|
|
2257
|
-
gridColor?: string;
|
|
2258
|
-
/** Snap dragged nodes to the grid. Defaults to false. */
|
|
2259
|
-
snapToGrid?: boolean;
|
|
2260
|
-
/** Automatically fit all nodes into view on initial mount */
|
|
2261
|
-
fitOnMount?: boolean;
|
|
2262
|
-
className?: string;
|
|
2263
|
-
style?: CSSProperties;
|
|
2264
|
-
}
|
|
2265
|
-
interface CanvasNodeProps {
|
|
2266
|
-
children: ReactNode;
|
|
2267
|
-
id: string;
|
|
2268
|
-
x: number;
|
|
2269
|
-
y: number;
|
|
2270
|
-
/** Allow drag-to-move */
|
|
2271
|
-
draggable?: boolean;
|
|
2272
|
-
/** Called when the node is dragged to a new position */
|
|
2273
|
-
onPositionChange?: (x: number, y: number) => void;
|
|
2274
|
-
className?: string;
|
|
2275
|
-
style?: CSSProperties;
|
|
2276
|
-
}
|
|
2277
|
-
interface CanvasEdgeProps {
|
|
2278
|
-
from: string;
|
|
2279
|
-
to: string;
|
|
2280
|
-
fromAnchor?: EdgeAnchor;
|
|
2281
|
-
toAnchor?: EdgeAnchor;
|
|
2282
|
-
curve?: "bezier" | "step" | "straight";
|
|
2283
|
-
color?: string;
|
|
2284
|
-
strokeWidth?: number;
|
|
2285
|
-
dashed?: boolean;
|
|
2286
|
-
animated?: boolean;
|
|
2287
|
-
label?: ReactNode;
|
|
2288
|
-
className?: string;
|
|
2289
|
-
markerStart?: string;
|
|
2290
|
-
markerEnd?: string;
|
|
2291
|
-
}
|
|
2292
|
-
interface CanvasMinimapProps {
|
|
2293
|
-
width?: number;
|
|
2294
|
-
height?: number;
|
|
2295
|
-
className?: string;
|
|
2296
|
-
}
|
|
2297
|
-
interface CanvasControlsProps {
|
|
2298
|
-
className?: string;
|
|
2299
|
-
showZoomIn?: boolean;
|
|
2300
|
-
showZoomOut?: boolean;
|
|
2301
|
-
showReset?: boolean;
|
|
2302
|
-
showFitAll?: boolean;
|
|
2303
|
-
}
|
|
2304
|
-
|
|
2305
|
-
declare function CanvasNode({ children, id, x, y, draggable, onPositionChange, className, style }: CanvasNodeProps): react_jsx_runtime.JSX.Element;
|
|
2306
|
-
declare namespace CanvasNode {
|
|
2307
|
-
var displayName: string;
|
|
2308
|
-
}
|
|
2309
|
-
|
|
2310
|
-
declare function CanvasEdge({ from, to, fromAnchor, toAnchor, curve, color, strokeWidth, dashed, animated, label, className, markerStart, markerEnd, }: CanvasEdgeProps): react_jsx_runtime.JSX.Element | null;
|
|
2311
|
-
declare namespace CanvasEdge {
|
|
2312
|
-
var displayName: string;
|
|
2313
|
-
}
|
|
2314
|
-
|
|
2315
|
-
declare function CanvasMinimap({ width, height, className }: CanvasMinimapProps): react_jsx_runtime.JSX.Element;
|
|
2316
|
-
declare namespace CanvasMinimap {
|
|
2317
|
-
var displayName: string;
|
|
2318
|
-
}
|
|
2319
|
-
|
|
2320
|
-
declare function CanvasControls({ className, showZoomIn, showZoomOut, showReset, showFitAll, }: CanvasControlsProps): react_jsx_runtime.JSX.Element;
|
|
2321
|
-
declare namespace CanvasControls {
|
|
2322
|
-
var displayName: string;
|
|
2323
|
-
}
|
|
2324
|
-
|
|
2325
|
-
declare function CanvasRoot({ children, viewport: controlledViewport, defaultViewport, onViewportChange, minZoom, maxZoom, pannable, zoomable, showGrid, gridStyle, gridSize, gridColor, snapToGrid, fitOnMount, className, style, }: CanvasProps): react_jsx_runtime.JSX.Element;
|
|
2326
|
-
declare const Canvas: typeof CanvasRoot & {
|
|
2327
|
-
Node: typeof CanvasNode;
|
|
2328
|
-
Edge: typeof CanvasEdge;
|
|
2329
|
-
Minimap: typeof CanvasMinimap;
|
|
2330
|
-
Controls: typeof CanvasControls;
|
|
2331
|
-
};
|
|
2332
|
-
|
|
2333
|
-
declare function useCanvas(): CanvasContextValue;
|
|
2334
|
-
|
|
2335
|
-
type DiagramType = "erd" | "flowchart" | "general";
|
|
2336
|
-
/** ERD/UML shorthand — sets fromMarker/toMarker (and lineStyle for some). */
|
|
2337
|
-
type RelationType = "one-to-one" | "one-to-many" | "many-to-one" | "many-to-many" | "association" | "aggregation" | "composition" | "inheritance" | "implementation" | "dependency" | "custom";
|
|
2338
|
-
/** Shape painted at each line endpoint. Strings prefixed `emoji:` render the
|
|
2339
|
-
* rest of the string as text at the endpoint (e.g. `emoji:🎯`). */
|
|
2340
|
-
type MarkerType = "none" | "arrow" | "arrow-open" | "circle" | "circle-open" | "square" | "square-open" | "diamond" | "diamond-open" | "triangle" | "triangle-open" | "one" | "many" | "optional-one" | "optional-many" | "cross" | (string & {});
|
|
2341
|
-
type LineStyle = "solid" | "dashed" | "dotted";
|
|
2342
|
-
type RoutingMode = "manhattan" | "bezier" | "straight";
|
|
2343
|
-
type ExportFormat = "erd" | "uml" | "dfd";
|
|
2344
|
-
interface DiagramFieldData {
|
|
2345
|
-
name: string;
|
|
2346
|
-
type?: string;
|
|
2347
|
-
primary?: boolean;
|
|
2348
|
-
foreign?: boolean;
|
|
2349
|
-
nullable?: boolean;
|
|
2350
|
-
}
|
|
2351
|
-
interface DiagramEntityData {
|
|
2352
|
-
/** Unique identifier. Defaults to `name` if omitted. */
|
|
2353
|
-
id?: string;
|
|
2354
|
-
name: string;
|
|
2355
|
-
fields?: DiagramFieldData[];
|
|
2356
|
-
x?: number;
|
|
2357
|
-
y?: number;
|
|
2358
|
-
}
|
|
2359
|
-
interface DiagramRelationData {
|
|
2360
|
-
/** Unique identifier. Auto-generated if omitted. */
|
|
2361
|
-
id?: string;
|
|
2362
|
-
from: string;
|
|
2363
|
-
to: string;
|
|
2364
|
-
fromField?: string;
|
|
2365
|
-
toField?: string;
|
|
2366
|
-
type: RelationType;
|
|
2367
|
-
fromMarker?: MarkerType;
|
|
2368
|
-
toMarker?: MarkerType;
|
|
2369
|
-
lineStyle?: LineStyle;
|
|
2370
|
-
routing?: RoutingMode;
|
|
2371
|
-
color?: string;
|
|
2372
|
-
label?: string;
|
|
2373
|
-
}
|
|
2374
|
-
interface DiagramSchema {
|
|
2375
|
-
entities: DiagramEntityData[];
|
|
2376
|
-
relations: DiagramRelationData[];
|
|
2377
|
-
}
|
|
2378
|
-
interface DiagramContextValue {
|
|
2379
|
-
diagramType: DiagramType;
|
|
2380
|
-
schema: DiagramSchema;
|
|
2381
|
-
downloadableRef: React.RefObject<boolean>;
|
|
2382
|
-
importableRef: React.RefObject<boolean>;
|
|
2383
|
-
exportFormats: ExportFormat[];
|
|
2384
|
-
onImport?: (schema: DiagramSchema) => void;
|
|
2385
|
-
}
|
|
2386
|
-
interface DiagramProps {
|
|
2387
|
-
children?: ReactNode;
|
|
2388
|
-
schema?: DiagramSchema;
|
|
2389
|
-
type?: DiagramType;
|
|
2390
|
-
viewport?: ViewportState;
|
|
2391
|
-
defaultViewport?: ViewportState;
|
|
2392
|
-
onViewportChange?: (viewport: ViewportState) => void;
|
|
2393
|
-
downloadable?: boolean;
|
|
2394
|
-
importable?: boolean;
|
|
2395
|
-
exportFormats?: ExportFormat[];
|
|
2396
|
-
onImport?: (schema: DiagramSchema) => void;
|
|
2397
|
-
minimap?: boolean;
|
|
2398
|
-
className?: string;
|
|
2399
|
-
}
|
|
2400
|
-
interface DiagramEntityProps {
|
|
2401
|
-
children?: ReactNode;
|
|
2402
|
-
/** Unique identifier. Defaults to `name` if omitted. */
|
|
2403
|
-
id?: string;
|
|
2404
|
-
name: string;
|
|
2405
|
-
x?: number;
|
|
2406
|
-
y?: number;
|
|
2407
|
-
color?: string;
|
|
2408
|
-
/** Allow drag-to-move */
|
|
2409
|
-
draggable?: boolean;
|
|
2410
|
-
/** Called when the entity is dragged to a new position */
|
|
2411
|
-
onPositionChange?: (x: number, y: number) => void;
|
|
2412
|
-
className?: string;
|
|
2413
|
-
}
|
|
2414
|
-
interface DiagramFieldProps {
|
|
2415
|
-
name: string;
|
|
2416
|
-
type?: string;
|
|
2417
|
-
primary?: boolean;
|
|
2418
|
-
foreign?: boolean;
|
|
2419
|
-
nullable?: boolean;
|
|
2420
|
-
className?: string;
|
|
2421
|
-
}
|
|
2422
|
-
interface DiagramRelationProps {
|
|
2423
|
-
from: string;
|
|
2424
|
-
to: string;
|
|
2425
|
-
fromField?: string;
|
|
2426
|
-
toField?: string;
|
|
2427
|
-
/** ERD/UML shorthand. Provides defaults for fromMarker/toMarker/lineStyle. */
|
|
2428
|
-
type?: RelationType;
|
|
2429
|
-
/** Override start endpoint marker. */
|
|
2430
|
-
fromMarker?: MarkerType;
|
|
2431
|
-
/** Override end endpoint marker. */
|
|
2432
|
-
toMarker?: MarkerType;
|
|
2433
|
-
/** Line style — solid (default), dashed, dotted. */
|
|
2434
|
-
lineStyle?: LineStyle;
|
|
2435
|
-
/** Routing algorithm — manhattan (default), bezier, straight. */
|
|
2436
|
-
routing?: RoutingMode;
|
|
2437
|
-
/** Stroke color. Defaults to a zinc gray. */
|
|
2438
|
-
color?: string;
|
|
2439
|
-
/** Stroke width. Default 2. */
|
|
2440
|
-
strokeWidth?: number;
|
|
2441
|
-
label?: string;
|
|
2442
|
-
className?: string;
|
|
2443
|
-
}
|
|
2444
|
-
interface DiagramToolbarProps {
|
|
2445
|
-
className?: string;
|
|
2446
|
-
}
|
|
2447
|
-
|
|
2448
|
-
declare function DiagramEntity({ children, id: idProp, name, x, y, color, draggable, onPositionChange, className, }: DiagramEntityProps): react_jsx_runtime.JSX.Element;
|
|
2449
|
-
declare namespace DiagramEntity {
|
|
2450
|
-
var displayName: string;
|
|
2451
|
-
}
|
|
2452
|
-
|
|
2453
|
-
declare function DiagramField({ name, type, primary, foreign, nullable, className, }: DiagramFieldProps): react_jsx_runtime.JSX.Element;
|
|
2454
|
-
declare namespace DiagramField {
|
|
2455
|
-
var displayName: string;
|
|
2456
|
-
}
|
|
2457
|
-
|
|
2458
|
-
declare function DiagramRelation({ from, to, fromField: fromFieldProp, toField: toFieldProp, type, fromMarker: fromMarkerProp, toMarker: toMarkerProp, lineStyle: lineStyleProp, routing, color, strokeWidth, label, }: DiagramRelationProps): react_jsx_runtime.JSX.Element | null;
|
|
2459
|
-
declare namespace DiagramRelation {
|
|
2460
|
-
var _isCanvasEdge: boolean;
|
|
2461
|
-
var displayName: string;
|
|
2462
|
-
}
|
|
2463
|
-
|
|
2464
|
-
declare function DiagramToolbar({ className }: DiagramToolbarProps): react_jsx_runtime.JSX.Element | null;
|
|
2465
|
-
declare namespace DiagramToolbar {
|
|
2466
|
-
var displayName: string;
|
|
2467
|
-
}
|
|
2468
|
-
|
|
2469
|
-
declare function DiagramRoot({ children, schema, type, viewport, defaultViewport, onViewportChange, downloadable, importable, exportFormats, onImport, minimap, className, }: DiagramProps): react_jsx_runtime.JSX.Element;
|
|
2470
|
-
declare const Diagram: typeof DiagramRoot & {
|
|
2471
|
-
Entity: typeof DiagramEntity;
|
|
2472
|
-
Field: typeof DiagramField;
|
|
2473
|
-
Relation: typeof DiagramRelation;
|
|
2474
|
-
Toolbar: typeof DiagramToolbar;
|
|
2475
|
-
};
|
|
2476
|
-
|
|
2477
|
-
declare function useDiagram(): DiagramContextValue;
|
|
2478
|
-
|
|
2479
2187
|
interface TreeNodeData {
|
|
2480
2188
|
/** Unique identifier */
|
|
2481
2189
|
id: string;
|
|
@@ -2639,4 +2347,42 @@ declare function useAnimation({ open, enterClass, exitClass, }: UseAnimationOpti
|
|
|
2639
2347
|
|
|
2640
2348
|
declare function useId(prefix?: string): string;
|
|
2641
2349
|
|
|
2642
|
-
|
|
2350
|
+
interface ViewportState {
|
|
2351
|
+
panX: number;
|
|
2352
|
+
panY: number;
|
|
2353
|
+
zoom: number;
|
|
2354
|
+
}
|
|
2355
|
+
interface UsePanZoomOptions {
|
|
2356
|
+
viewport: ViewportState;
|
|
2357
|
+
setViewport: (vp: ViewportState | ((prev: ViewportState) => ViewportState)) => void;
|
|
2358
|
+
minZoom: number;
|
|
2359
|
+
maxZoom: number;
|
|
2360
|
+
pannable: boolean;
|
|
2361
|
+
zoomable: boolean;
|
|
2362
|
+
containerRef: React.RefObject<HTMLElement | null>;
|
|
2363
|
+
}
|
|
2364
|
+
interface UsePanZoomReturn {
|
|
2365
|
+
containerProps: {
|
|
2366
|
+
onPointerDown: (e: React.PointerEvent) => void;
|
|
2367
|
+
onPointerMove: (e: React.PointerEvent) => void;
|
|
2368
|
+
onPointerUp: (e: React.PointerEvent) => void;
|
|
2369
|
+
};
|
|
2370
|
+
isPanning: boolean;
|
|
2371
|
+
}
|
|
2372
|
+
declare function usePanZoom({ viewport, setViewport, minZoom, maxZoom, pannable, zoomable, containerRef, }: UsePanZoomOptions): UsePanZoomReturn;
|
|
2373
|
+
|
|
2374
|
+
interface NodeRect {
|
|
2375
|
+
x: number;
|
|
2376
|
+
y: number;
|
|
2377
|
+
width: number;
|
|
2378
|
+
height: number;
|
|
2379
|
+
}
|
|
2380
|
+
interface UseNodeRegistryReturn {
|
|
2381
|
+
registerNode: (id: string, rect: NodeRect) => void;
|
|
2382
|
+
unregisterNode: (id: string) => void;
|
|
2383
|
+
nodeRects: Map<string, NodeRect>;
|
|
2384
|
+
version: number;
|
|
2385
|
+
}
|
|
2386
|
+
declare function useNodeRegistry(): UseNodeRegistryReturn;
|
|
2387
|
+
|
|
2388
|
+
export { Accordion, type AccordionContentProps, type AccordionContextValue, type AccordionItemProps, type AccordionOrientation, AccordionPanel, AccordionPanelContent, type AccordionPanelContentProps, type AccordionPanelProps, AccordionPanelSection, type AccordionPanelSectionProps, AccordionPanelTrigger, type AccordionPanelTriggerProps, type AccordionProps, type AccordionTriggerProps, Action, type ActionColor, type ActionProps, type AffixPosition, Autocomplete, type AutocompleteOption, type AutocompleteProps, Avatar, type AvatarProps, Badge, type BadgeProps, Brand, type BrandProps, Breadcrumbs, type BreadcrumbsItemProps, type BreadcrumbsProps, Calendar, type CalendarMode, type CalendarProps, Callout, type CalloutProps, Card, type CardBodyProps, type CardFooterProps, type CardHeaderProps, type CardProps, Carousel, type CarouselContextValue, type CarouselControlsProps, type CarouselPanelsProps, type CarouselProps, type CarouselSlideProps, type CarouselStepsProps, type CarouselVariant, Chart, type ChartAreaProps, type ChartBarData, type ChartBarProps, type ChartCommonProps, type ChartDonutData, type ChartDonutProps, type ChartHorizontalBarProps, type ChartLineProps, type ChartPieData, type ChartPieProps, type ChartSeries, type ChartSparklineProps, type ChartStackedBarProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, type Color, ColorPicker, type ColorPickerProps, Command, type CommandContextValue, type CommandEmptyProps, type CommandGroupProps, type CommandInputProps, type CommandItemProps, type CommandListProps, type CommandProps, Composer, type ComposerProps, ContentRenderer, type ContentRendererProps, ContextMenu, type ContextMenuContentProps, type ContextMenuContextValue, type ContextMenuItemProps, type ContextMenuProps, type ContextMenuSeparatorProps, type ContextMenuTriggerProps, DatePicker, type DatePickerProps, type DateRange, type DropPosition, Dropdown, type DropdownContextValue, type DropdownItemProps, type DropdownItemsProps, type DropdownProps, type DropdownSeparatorProps, type DropdownTriggerProps, EMOJI_CATEGORY_ORDER, EMOJI_DATA, EMOJI_ENTRIES, Editor, type EditorAction, type EditorContentProps, type EditorContextValue, type EditorProps, type EditorToolbarProps, Emoji, type EmojiCategory, type EmojiCategoryKey, type EmojiEntry, type EmojiFlatEntry, type EmojiProps, EmojiSelect, type EmojiSelectProps, Field, type FieldProps, FileUpload, type FileUploadContextValue, type FileUploadDropzoneProps, type FileUploadListProps, type FileUploadProps, Heading, type HeadingProps, Icon, type IconProps, type IconSet, Input, type InputAffixProps, type InputBaseProps, type InputOption, type InputOptionGroup, type InputProps, Kanban, type KanbanCardMoveHandler, type KanbanCardProps, type KanbanColumnHandleProps, type KanbanColumnMoveHandler, type KanbanColumnProps, type KanbanContextValue, type KanbanProps, Menu, type MenuContextValue, type MenuGroupProps, type MenuItemProps, type MenuOrientation, type MenuProps, type MenuSubmenuProps, MobileMenu, type MobileMenuBottomBarProps, type MobileMenuContextValue, type MobileMenuFlyoutProps, type MobileMenuItemProps, type MobileMenuSide, type MobileMenuVariant, Modal, type ModalBodyProps, type ModalContextValue, type ModalFooterProps, type ModalHeaderProps, type ModalProps, MultiSwitch, type MultiSwitchProps, Navbar, type NavbarBrandProps, type NavbarContextValue, type NavbarItemProps, type NavbarItemsProps, type NavbarProps, type NavbarToggleProps, type NodeRect, OtpInput, type OtpInputProps, Pagination, type PaginationProps, Pillbox, type PillboxProps, type Placement, Popover, type PopoverContentProps, type PopoverContextValue, type PopoverProps, type PopoverTriggerProps, Portal, type PortalProps, Profile, type ProfileProps, Progress, type ProgressProps, RadioGroup, type RadioGroupProps, type RenderExtension, type RenderExtensionProps, SKIN_TONES, type SectionRenderState, type SectionRenderable, Select, type SelectProps, Separator, type SeparatorProps, Sidebar, type SidebarCollapseMode, type SidebarContextValue, type SidebarGroupProps, type SidebarItemProps, type SidebarProps, type SidebarSubmenuProps, type SidebarToggleProps, type Size, Skeleton, type SkeletonProps, type SkinTone, Slider, type SliderProps, Switch, type SwitchProps, Table, type TableBodyProps, type TableCellProps, type TableColumnProps, type TableHeadProps, type TablePaginationProps, type TableProps, type TableRowProps, type TableRowTrayProps, type TableSearchProps, type TableTrayProps, Tabs, type TabsContextValue, type TabsListProps, type TabsPanelProps, type TabsPanelsProps, type TabsProps, type TabsTabProps, type TabsVariant, Text, type TextProps, Textarea, type TextareaProps, TimePicker, type TimePickerProps, Timeline, type TimelineBlockProps, type TimelineEvent, type TimelineItemProps, type TimelineOrientation, type TimelineProps, type TimelineVariant, Toast, type ToastContextValue, type ToastData, type ToastPosition, type ToastProviderProps, type ToastVariant, Tooltip, type TooltipProps, TreeNav, type TreeNavContextValue, type TreeNavProps, type TreeNodeData, type TreeNodeProps, type Variant, applyTone, cn, configureIcons, find, hasSkinTones, registerExtension, registerExtensions, registerIconSet, registerIcons, resolve, sanitizeHref, sanitizeHtml, search, skinTones, useAccordion, useAccordionPanel, useAccordionSection, useAnimation, useCarousel, useCommand, useContextMenu, useControllableState, useDropdown, useEditor, useEscapeKey, useFileUpload, useFloatingPosition, useFocusTrap, useId, useKanban, useMenu, useMobileMenu, useModal, useNavbar, useNodeRegistry, useOutsideClick, usePanZoom, usePopover, useSidebar, useTabs, useToast, useTreeNav };
|