@almadar/ui 2.5.0 → 2.6.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.
@@ -7,7 +7,7 @@ import { OrbitalEntity } from '@almadar/core';
7
7
  import { b as DomLayoutData, d as DomStateNode, V as VisualizerConfig, e as DomTransitionLabel, C as ContentSegment } from '../cn-BoBXsxuX.js';
8
8
  export { h as cn } from '../cn-BoBXsxuX.js';
9
9
  import { I as IsometricTile, a as IsometricUnit, b as IsometricFeature, C as CameraState } from '../isometric-ynNHVPZx.js';
10
- export { AuthContextValue, AuthUser, ChangeSummary, CompileResult, CompileStage, ENTITY_EVENTS, EntityDataAdapter, EntityDataProvider, EntityDataRecord, EntityMutationResult, Extension, ExtensionManifest, FileSystemFile, FileSystemStatus, GitHubRepo, GitHubStatus, HistoryTimelineItem, I18nContextValue, I18nProvider, OpenFile, OrbitalEventPayload, OrbitalEventResponse, QuerySingletonEntity, QuerySingletonResult, QuerySingletonState, QueryState, ResolvedEntity, RevertResult, SelectedFile, TranslateFunction, UseCompileResult, UseEntityDetailResult, UseEntityListOptions, UseEntityListResult, UseEntityMutationsOptions, UseExtensionsOptions, UseExtensionsResult, UseFileEditorOptions, UseFileEditorResult, UseFileSystemResult, UseOrbitalHistoryOptions, UseOrbitalHistoryResult, createTranslate, entityDataKeys, parseQueryBinding, useAgentChat, useAuthContext, useCompile, useConnectGitHub, useCreateEntity, useDeepAgentGeneration, useDeleteEntity, useDisconnectGitHub, useEmitEvent, useEntities, useEntitiesByType, useEntity, useEntityById, useEntityDataAdapter, useEntityDetail, useEntityList, useEntityListSuspense, useEntityMutations, useEntitySuspense, useEventBus, useEventListener, useExtensions, useFileEditor, useFileSystem, useGitHubBranches, useGitHubRepo, useGitHubRepos, useGitHubStatus, useInput, useOrbitalHistory, useOrbitalMutations, usePhysics, usePlayer, usePreview, useQuerySingleton, useResolvedEntity, useSelectedEntity, useSendOrbitalEvent, useSingletonEntity, useTranslate, useUIEvents, useUpdateEntity, useValidation } from '../hooks/index.js';
10
+ export { AuthContextValue, AuthUser, ChangeSummary, CompileResult, CompileStage, DragReorderResult, ENTITY_EVENTS, EntityDataAdapter, EntityDataProvider, EntityDataRecord, EntityMutationResult, Extension, ExtensionManifest, FileSystemFile, FileSystemStatus, GitHubRepo, GitHubStatus, HistoryTimelineItem, I18nContextValue, I18nProvider, InfiniteScrollOptions, InfiniteScrollResult, LongPressHandlers, LongPressOptions, OpenFile, OrbitalEventPayload, OrbitalEventResponse, PinchZoomOptions, PinchZoomResult, PullToRefreshOptions, PullToRefreshResult, QuerySingletonEntity, QuerySingletonResult, QuerySingletonState, QueryState, ResolvedEntity, RevertResult, SelectedFile, SwipeGestureOptions, SwipeGestureResult, SwipeHandlers, TranslateFunction, UseCompileResult, UseEntityDetailResult, UseEntityListOptions, UseEntityListResult, UseEntityMutationsOptions, UseExtensionsOptions, UseExtensionsResult, UseFileEditorOptions, UseFileEditorResult, UseFileSystemResult, UseOrbitalHistoryOptions, UseOrbitalHistoryResult, createTranslate, entityDataKeys, parseQueryBinding, useAgentChat, useAuthContext, useCompile, useConnectGitHub, useCreateEntity, useDeepAgentGeneration, useDeleteEntity, useDisconnectGitHub, useDragReorder, useEmitEvent, useEntities, useEntitiesByType, useEntity, useEntityById, useEntityDataAdapter, useEntityDetail, useEntityList, useEntityListSuspense, useEntityMutations, useEntitySuspense, useEventBus, useEventListener, useExtensions, useFileEditor, useFileSystem, useGitHubBranches, useGitHubRepo, useGitHubRepos, useGitHubStatus, useInfiniteScroll, useInput, useLongPress, useOrbitalHistory, useOrbitalMutations, usePhysics, usePinchZoom, usePlayer, usePreview, usePullToRefresh, useQuerySingleton, useResolvedEntity, useSelectedEntity, useSendOrbitalEvent, useSingletonEntity, useSwipeGesture, useTranslate, useUIEvents, useUpdateEntity, useValidation } from '../hooks/index.js';
11
11
  import { E as EventBusContextType } from '../event-bus-types-CjJduURa.js';
12
12
  export { a as EventListener, K as KFlowEvent, U as Unsubscribe } from '../event-bus-types-CjJduURa.js';
13
13
  import { S as SlotContent, a as UISlot } from '../useUISlots-BBjNvQtb.js';
@@ -514,6 +514,8 @@ interface StackProps {
514
514
  action?: string;
515
515
  /** Payload to include with the action event */
516
516
  actionPayload?: Record<string, unknown>;
517
+ /** When true, horizontal stacks flip to vertical below the md breakpoint (768px) */
518
+ responsive?: boolean;
517
519
  }
518
520
  /**
519
521
  * Stack - Flexible layout component for arranging children
@@ -893,6 +895,155 @@ declare namespace TimeSlotCell {
893
895
  var displayName: string;
894
896
  }
895
897
 
898
+ type StatusDotStatus = "online" | "offline" | "away" | "busy" | "warning" | "critical";
899
+ type StatusDotSize = "sm" | "md" | "lg";
900
+ interface StatusDotProps extends React__default.HTMLAttributes<HTMLSpanElement> {
901
+ /** Status determines the dot color */
902
+ status?: StatusDotStatus;
903
+ /** Enable pulse animation for active/critical states */
904
+ pulse?: boolean;
905
+ /** Dot size */
906
+ size?: StatusDotSize;
907
+ /** Accessible label (rendered as sr-only text) */
908
+ label?: string;
909
+ }
910
+ declare const StatusDot: React__default.ForwardRefExoticComponent<StatusDotProps & React__default.RefAttributes<HTMLSpanElement>>;
911
+
912
+ type TrendDirection = "up" | "down" | "flat";
913
+ type TrendIndicatorSize = "sm" | "md" | "lg";
914
+ interface TrendIndicatorProps extends React__default.HTMLAttributes<HTMLSpanElement> {
915
+ /** Numeric value to display (e.g., 12.5 for +12.5%) */
916
+ value?: number;
917
+ /** Override automatic direction detection (positive=up, negative=down, zero=flat) */
918
+ direction?: TrendDirection;
919
+ /** Show the formatted value text next to the arrow */
920
+ showValue?: boolean;
921
+ /** Invert color logic (for metrics where down is good, e.g., error rate, bounce rate) */
922
+ invert?: boolean;
923
+ /** Accessible label override */
924
+ label?: string;
925
+ /** Size of the indicator */
926
+ size?: TrendIndicatorSize;
927
+ }
928
+ declare const TrendIndicator: React__default.ForwardRefExoticComponent<TrendIndicatorProps & React__default.RefAttributes<HTMLSpanElement>>;
929
+
930
+ type RangeSliderSize = "sm" | "md" | "lg";
931
+ interface RangeSliderProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, "onChange"> {
932
+ /** Minimum value */
933
+ min?: number;
934
+ /** Maximum value */
935
+ max?: number;
936
+ /** Current value */
937
+ value?: number;
938
+ /** Step increment */
939
+ step?: number;
940
+ /** Show tooltip with current value on drag */
941
+ showTooltip?: boolean;
942
+ /** Show tick marks at step intervals */
943
+ showTicks?: boolean;
944
+ /** Buffered range (0-100), for media seek bars */
945
+ buffered?: number;
946
+ /** Slider size */
947
+ size?: RangeSliderSize;
948
+ /** Disabled state */
949
+ disabled?: boolean;
950
+ /** Declarative event name for value changes */
951
+ action?: string;
952
+ /** Payload to include with the action event */
953
+ actionPayload?: Record<string, unknown>;
954
+ /** Direct onChange callback */
955
+ onChange?: (value: number) => void;
956
+ /** Format function for tooltip display */
957
+ formatValue?: (value: number) => string;
958
+ }
959
+ declare const RangeSlider: React__default.ForwardRefExoticComponent<RangeSliderProps & React__default.RefAttributes<HTMLDivElement>>;
960
+
961
+ /**
962
+ * AnimatedCounter Atom Component
963
+ *
964
+ * Animates a number from its previous value to the current value
965
+ * using requestAnimationFrame and ease-out easing.
966
+ */
967
+
968
+ interface AnimatedCounterProps {
969
+ /** The target number to animate to */
970
+ value: number;
971
+ /** Animation duration in milliseconds */
972
+ duration?: number;
973
+ /** Text to display before the number */
974
+ prefix?: string;
975
+ /** Text to display after the number */
976
+ suffix?: string;
977
+ /** Additional class names */
978
+ className?: string;
979
+ }
980
+ declare const AnimatedCounter: React__default.FC<AnimatedCounterProps>;
981
+
982
+ /**
983
+ * InfiniteScrollSentinel Atom Component
984
+ *
985
+ * Invisible element placed at the end of a list. Uses IntersectionObserver
986
+ * via useInfiniteScroll to detect when the user scrolls near the bottom,
987
+ * then fires a load-more event through the event bus.
988
+ */
989
+
990
+ interface InfiniteScrollSentinelProps {
991
+ /** Event name to emit when load-more is triggered (emitted as UI:{loadMoreEvent}) */
992
+ loadMoreEvent: string;
993
+ /** Optional payload to include with the load-more event */
994
+ loadMorePayload?: Record<string, unknown>;
995
+ /** Whether a load operation is currently in progress */
996
+ isLoading?: boolean;
997
+ /** Whether there are more items to load */
998
+ hasMore?: boolean;
999
+ /** IntersectionObserver rootMargin for early trigger */
1000
+ threshold?: string;
1001
+ /** Additional class names */
1002
+ className?: string;
1003
+ }
1004
+ declare const InfiniteScrollSentinel: React__default.FC<InfiniteScrollSentinelProps>;
1005
+
1006
+ /**
1007
+ * ConfettiEffect Atom Component
1008
+ *
1009
+ * Renders a brief particle burst animation when triggered.
1010
+ * Uses CSS keyframe animations for each particle with random
1011
+ * position, rotation, and velocity.
1012
+ */
1013
+
1014
+ interface ConfettiEffectProps {
1015
+ /** When this changes from false to true, a burst of particles is spawned */
1016
+ trigger: boolean;
1017
+ /** How long the animation lasts in milliseconds */
1018
+ duration?: number;
1019
+ /** Number of particles to spawn */
1020
+ particleCount?: number;
1021
+ /** Additional class names */
1022
+ className?: string;
1023
+ }
1024
+ declare const ConfettiEffect: React__default.FC<ConfettiEffectProps>;
1025
+
1026
+ /**
1027
+ * TypewriterText Atom Component
1028
+ *
1029
+ * Reveals text character-by-character with a blinking cursor
1030
+ * that disappears after the full text has been typed out.
1031
+ */
1032
+
1033
+ interface TypewriterTextProps {
1034
+ /** The full text to reveal */
1035
+ text: string;
1036
+ /** Milliseconds per character */
1037
+ speed?: number;
1038
+ /** Delay before typing starts (ms) */
1039
+ startDelay?: number;
1040
+ /** Additional class names */
1041
+ className?: string;
1042
+ /** Called when the entire text has been revealed */
1043
+ onComplete?: () => void;
1044
+ }
1045
+ declare const TypewriterText: React__default.FC<TypewriterTextProps>;
1046
+
896
1047
  interface HealthBarProps {
897
1048
  /** Current health value */
898
1049
  current: number;
@@ -1512,11 +1663,15 @@ interface CardProps {
1512
1663
  level?: number;
1513
1664
  /** Maximum level */
1514
1665
  maxLevel?: number;
1666
+ /** Event emitted on long press: UI:{longPressEvent} */
1667
+ longPressEvent?: string;
1668
+ /** Additional payload for long-press events */
1669
+ longPressPayload?: Record<string, unknown>;
1515
1670
  }
1516
1671
  /**
1517
1672
  * Card component for displaying content in a contained box
1518
1673
  */
1519
- declare function Card({ title, subtitle, image, actions, children, onClick, className, action, }: CardProps): react_jsx_runtime.JSX.Element;
1674
+ declare function Card({ title, subtitle, image, actions, children, onClick, className, action, longPressEvent, longPressPayload, }: CardProps): react_jsx_runtime.JSX.Element;
1520
1675
  declare namespace Card {
1521
1676
  var displayName: string;
1522
1677
  }
@@ -1804,6 +1959,8 @@ interface ModalProps {
1804
1959
  className?: string;
1805
1960
  /** Declarative close event — emits UI:{closeEvent} via eventBus when modal should close */
1806
1961
  closeEvent?: string;
1962
+ /** Enable swipe-down-to-close on mobile bottom sheet (default: true) */
1963
+ swipeDownToClose?: boolean;
1807
1964
  }
1808
1965
  declare const Modal: React__default.FC<ModalProps>;
1809
1966
 
@@ -2470,8 +2627,16 @@ interface CalendarGridProps {
2470
2627
  onEventClick?: (event: CalendarEvent) => void;
2471
2628
  /** Additional CSS classes */
2472
2629
  className?: string;
2630
+ /** Event emitted on long-press of a time slot: UI:{longPressEvent} with { date, time } */
2631
+ longPressEvent?: string;
2632
+ /** Additional payload for long-press events */
2633
+ longPressPayload?: Record<string, unknown>;
2634
+ /** Event emitted on swipe left (next week): UI:{swipeLeftEvent} */
2635
+ swipeLeftEvent?: string;
2636
+ /** Event emitted on swipe right (prev week): UI:{swipeRightEvent} */
2637
+ swipeRightEvent?: string;
2473
2638
  }
2474
- declare function CalendarGrid({ weekStart, timeSlots, events, onSlotClick, onDayClick, onEventClick, className, }: CalendarGridProps): React__default.JSX.Element;
2639
+ declare function CalendarGrid({ weekStart, timeSlots, events, onSlotClick, onDayClick, onEventClick, className, longPressEvent, longPressPayload, swipeLeftEvent, swipeRightEvent, }: CalendarGridProps): React__default.JSX.Element;
2475
2640
  declare namespace CalendarGrid {
2476
2641
  var displayName: string;
2477
2642
  }
@@ -2907,6 +3072,110 @@ interface MapViewProps {
2907
3072
  }
2908
3073
  declare function MapView({ markers, centerLat, centerLng, zoom, height, onMarkerClick, onMapClick, mapClickEvent, markerClickEvent, showClickedPin, className, showAttribution, }: MapViewProps): react_jsx_runtime.JSX.Element;
2909
3074
 
3075
+ type NumberStepperSize = "sm" | "md" | "lg";
3076
+ interface NumberStepperProps {
3077
+ /** Current value */
3078
+ value?: number;
3079
+ /** Minimum value */
3080
+ min?: number;
3081
+ /** Maximum value */
3082
+ max?: number;
3083
+ /** Step increment */
3084
+ step?: number;
3085
+ /** Size variant */
3086
+ size?: NumberStepperSize;
3087
+ /** Disabled state */
3088
+ disabled?: boolean;
3089
+ /** Direct onChange callback */
3090
+ onChange?: (value: number) => void;
3091
+ /** Declarative event name for value changes */
3092
+ action?: string;
3093
+ /** Payload to include with the action event */
3094
+ actionPayload?: Record<string, unknown>;
3095
+ /** Additional CSS classes */
3096
+ className?: string;
3097
+ /** Accessible label */
3098
+ label?: string;
3099
+ }
3100
+ declare const NumberStepper: React__default.FC<NumberStepperProps>;
3101
+
3102
+ type StarRatingSize = "sm" | "md" | "lg";
3103
+ type StarRatingPrecision = "full" | "half";
3104
+ interface StarRatingProps {
3105
+ /** Current rating value */
3106
+ value?: number;
3107
+ /** Maximum number of stars */
3108
+ max?: number;
3109
+ /** Read-only display mode */
3110
+ readOnly?: boolean;
3111
+ /** Full or half-star precision */
3112
+ precision?: StarRatingPrecision;
3113
+ /** Star size */
3114
+ size?: StarRatingSize;
3115
+ /** Declarative event name for rating changes */
3116
+ action?: string;
3117
+ /** Payload to include with the action event */
3118
+ actionPayload?: Record<string, unknown>;
3119
+ /** Direct onChange callback */
3120
+ onChange?: (value: number) => void;
3121
+ /** Additional CSS classes */
3122
+ className?: string;
3123
+ /** Accessible label */
3124
+ label?: string;
3125
+ }
3126
+ declare const StarRating: React__default.FC<StarRatingProps>;
3127
+
3128
+ interface UploadDropZoneProps {
3129
+ /** Accepted MIME types (e.g., "image/*", "application/pdf") */
3130
+ accept?: string;
3131
+ /** Max file size in bytes */
3132
+ maxSize?: number;
3133
+ /** Max number of files */
3134
+ maxFiles?: number;
3135
+ /** Label text */
3136
+ label?: string;
3137
+ /** Description text below label */
3138
+ description?: string;
3139
+ /** Icon name (Lucide string) */
3140
+ icon?: string;
3141
+ /** Disabled state */
3142
+ disabled?: boolean;
3143
+ /** Declarative event name for file selection */
3144
+ action?: string;
3145
+ /** Payload to include with the action event */
3146
+ actionPayload?: Record<string, unknown>;
3147
+ /** Direct onFiles callback */
3148
+ onFiles?: (files: File[]) => void;
3149
+ /** Additional CSS classes */
3150
+ className?: string;
3151
+ }
3152
+ declare const UploadDropZone: React__default.FC<UploadDropZoneProps>;
3153
+
3154
+ interface LightboxImage {
3155
+ src: string;
3156
+ alt?: string;
3157
+ caption?: string;
3158
+ }
3159
+ interface LightboxProps {
3160
+ /** Array of images to display */
3161
+ images: LightboxImage[];
3162
+ /** Current image index */
3163
+ currentIndex?: number;
3164
+ /** Whether the lightbox is open */
3165
+ isOpen?: boolean;
3166
+ /** Show image counter (e.g., "3 of 12") */
3167
+ showCounter?: boolean;
3168
+ /** Declarative close event name */
3169
+ closeAction?: string;
3170
+ /** Direct onClose callback */
3171
+ onClose?: () => void;
3172
+ /** Direct onIndexChange callback */
3173
+ onIndexChange?: (index: number) => void;
3174
+ /** Additional CSS classes */
3175
+ className?: string;
3176
+ }
3177
+ declare const Lightbox: React__default.FC<LightboxProps>;
3178
+
2910
3179
  /**
2911
3180
  * DataGrid Molecule
2912
3181
  *
@@ -2966,6 +3235,16 @@ interface DataGridProps {
2966
3235
  error?: Error | null;
2967
3236
  /** Entity field name containing an image URL for card thumbnails */
2968
3237
  imageField?: string;
3238
+ /** Enable multi-select with checkboxes */
3239
+ selectable?: boolean;
3240
+ /** Selection change event name (emits UI:{selectionEvent} with { selectedIds: string[] }) */
3241
+ selectionEvent?: string;
3242
+ /** Enable infinite scroll loading */
3243
+ infiniteScroll?: boolean;
3244
+ /** Event emitted when more items needed: UI:{loadMoreEvent} */
3245
+ loadMoreEvent?: string;
3246
+ /** Whether more items are available for infinite scroll */
3247
+ hasMore?: boolean;
2969
3248
  }
2970
3249
  declare const DataGrid: React__default.FC<DataGridProps>;
2971
3250
 
@@ -3017,16 +3296,147 @@ interface DataListProps {
3017
3296
  /** Gap between rows */
3018
3297
  gap?: 'none' | 'sm' | 'md' | 'lg';
3019
3298
  /** Visual variant */
3020
- variant?: 'default' | 'card' | 'compact';
3299
+ variant?: 'default' | 'card' | 'compact' | 'message';
3300
+ /** Group items by a field value (renders section headers between groups) */
3301
+ groupBy?: string;
3302
+ /** Field name identifying the sender (used with variant: "message") */
3303
+ senderField?: string;
3304
+ /** Current user identifier; messages matching this value align right (used with variant: "message") */
3305
+ currentUser?: string;
3021
3306
  /** Additional CSS classes */
3022
3307
  className?: string;
3023
3308
  /** Loading state */
3024
3309
  isLoading?: boolean;
3025
3310
  /** Error state */
3026
3311
  error?: Error | null;
3312
+ /** Enable drag-to-reorder with grip handles */
3313
+ reorderable?: boolean;
3314
+ /** Event emitted on reorder: UI:{reorderEvent} with { fromIndex, toIndex } */
3315
+ reorderEvent?: string;
3316
+ /** Event emitted on left swipe: UI:{swipeLeftEvent} with { row } */
3317
+ swipeLeftEvent?: string;
3318
+ /** Actions revealed on left swipe */
3319
+ swipeLeftActions?: readonly {
3320
+ label: string;
3321
+ icon?: string;
3322
+ variant?: 'primary' | 'secondary' | 'danger' | 'ghost';
3323
+ }[];
3324
+ /** Event emitted on right swipe: UI:{swipeRightEvent} with { row } */
3325
+ swipeRightEvent?: string;
3326
+ /** Actions revealed on right swipe */
3327
+ swipeRightActions?: readonly {
3328
+ label: string;
3329
+ icon?: string;
3330
+ variant?: 'primary' | 'secondary' | 'danger' | 'ghost';
3331
+ }[];
3332
+ /** Event emitted on long press: UI:{longPressEvent} with { row } */
3333
+ longPressEvent?: string;
3334
+ /** Enable infinite scroll loading */
3335
+ infiniteScroll?: boolean;
3336
+ /** Event emitted when more items needed: UI:{loadMoreEvent} */
3337
+ loadMoreEvent?: string;
3338
+ /** Whether more items are available for infinite scroll */
3339
+ hasMore?: boolean;
3027
3340
  }
3028
3341
  declare const DataList: React__default.FC<DataListProps>;
3029
3342
 
3343
+ /**
3344
+ * SwipeableRow Molecule
3345
+ *
3346
+ * Wraps a list item to reveal action buttons on horizontal swipe.
3347
+ * Swipe left to reveal right actions, swipe right to reveal left actions.
3348
+ * Uses useSwipeGesture for gesture detection and useEventBus for event emission.
3349
+ */
3350
+
3351
+ interface SwipeAction {
3352
+ label: string;
3353
+ icon?: string;
3354
+ variant?: 'primary' | 'secondary' | 'danger' | 'ghost';
3355
+ event: string;
3356
+ eventPayload?: Record<string, unknown>;
3357
+ }
3358
+ interface SwipeableRowProps {
3359
+ leftActions?: SwipeAction[];
3360
+ rightActions?: SwipeAction[];
3361
+ threshold?: number;
3362
+ children: React__default.ReactNode;
3363
+ itemData?: Record<string, unknown>;
3364
+ className?: string;
3365
+ }
3366
+ declare const SwipeableRow: React__default.FC<SwipeableRowProps>;
3367
+
3368
+ /**
3369
+ * SortableList Molecule
3370
+ *
3371
+ * A list where items can be dragged to reorder via drag handles.
3372
+ * Uses useDragReorder for drag state management and useEventBus for event emission.
3373
+ * Shows a drop indicator line at the target position during drag.
3374
+ */
3375
+
3376
+ interface SortableListProps<T = Record<string, unknown>> {
3377
+ items: T[];
3378
+ renderItem: (item: T, index: number) => React__default.ReactNode;
3379
+ reorderEvent: string;
3380
+ reorderPayload?: Record<string, unknown>;
3381
+ dragHandlePosition?: 'left' | 'right';
3382
+ className?: string;
3383
+ }
3384
+ declare const SortableList: <T = Record<string, unknown>>(props: SortableListProps<T>) => React__default.ReactElement;
3385
+
3386
+ /**
3387
+ * Carousel Molecule Component
3388
+ *
3389
+ * Horizontal scrolling container with snap points, swipe gestures,
3390
+ * prev/next arrow buttons, and dot indicators.
3391
+ * Pure UI molecule with no entity binding.
3392
+ */
3393
+
3394
+ interface CarouselProps<T = Record<string, unknown>> {
3395
+ /** Array of items to display as slides */
3396
+ items: T[];
3397
+ /** Render function for each slide */
3398
+ renderItem: (item: T, index: number) => React__default.ReactNode;
3399
+ /** Enable auto-play rotation */
3400
+ autoPlay?: boolean;
3401
+ /** Auto-play interval in milliseconds (default: 5000) */
3402
+ autoPlayInterval?: number;
3403
+ /** Show dot indicators */
3404
+ showDots?: boolean;
3405
+ /** Show prev/next arrow buttons */
3406
+ showArrows?: boolean;
3407
+ /** Enable infinite loop */
3408
+ loop?: boolean;
3409
+ /** Declarative event name for slide change */
3410
+ slideChangeEvent?: string;
3411
+ /** Payload to include with the slide change event */
3412
+ slideChangePayload?: Record<string, unknown>;
3413
+ /** Additional CSS classes */
3414
+ className?: string;
3415
+ }
3416
+ declare const Carousel: <T = Record<string, unknown>>({ items, renderItem, autoPlay, autoPlayInterval, showDots, showArrows, loop, slideChangeEvent, slideChangePayload, className, }: CarouselProps<T>) => React__default.ReactElement | null;
3417
+
3418
+ /**
3419
+ * PullToRefresh Molecule Component
3420
+ *
3421
+ * Wrapper that adds pull-to-refresh gesture to children.
3422
+ * Shows a spinner indicator as the user pulls down, and emits
3423
+ * a refresh event via the event bus when the threshold is met.
3424
+ */
3425
+
3426
+ interface PullToRefreshProps {
3427
+ /** Event name to emit on refresh (emitted as UI:{refreshEvent}) */
3428
+ refreshEvent: string;
3429
+ /** Payload to include with the refresh event */
3430
+ refreshPayload?: Record<string, unknown>;
3431
+ /** Pull distance threshold to trigger refresh in px (default: 60) */
3432
+ threshold?: number;
3433
+ /** Content to wrap */
3434
+ children: React__default.ReactNode;
3435
+ /** Additional CSS classes */
3436
+ className?: string;
3437
+ }
3438
+ declare const PullToRefresh: React__default.FC<PullToRefreshProps>;
3439
+
3030
3440
  /**
3031
3441
  * Shared types for entity-display organisms.
3032
3442
  *
@@ -3211,6 +3621,8 @@ interface StatCardProps extends EntityDisplayProps {
3211
3621
  metrics?: readonly MetricDefinition[];
3212
3622
  /** Compact display mode */
3213
3623
  compact?: boolean;
3624
+ /** Sparkline data points for an inline trend chart */
3625
+ sparklineData?: readonly number[];
3214
3626
  }
3215
3627
  declare const StatCard: React__default.FC<StatCardProps>;
3216
3628
 
@@ -7513,14 +7925,14 @@ interface PhysicsPreset {
7513
7925
  */
7514
7926
 
7515
7927
  interface SimulationCanvasProps {
7516
- preset: PhysicsPreset;
7928
+ preset: string | PhysicsPreset;
7517
7929
  width?: number;
7518
7930
  height?: number;
7519
7931
  running: boolean;
7520
7932
  speed?: number;
7521
7933
  className?: string;
7522
7934
  }
7523
- declare function SimulationCanvas({ preset, width, height, running, speed, className, }: SimulationCanvasProps): React__default.JSX.Element;
7935
+ declare function SimulationCanvas({ preset: presetProp, width, height, running, speed, className, }: SimulationCanvasProps): React__default.JSX.Element;
7524
7936
  declare namespace SimulationCanvas {
7525
7937
  var displayName: string;
7526
7938
  }
@@ -8703,4 +9115,4 @@ declare namespace WorldMapTemplate {
8703
9115
  var displayName: string;
8704
9116
  }
8705
9117
 
8706
- export { ALL_PRESETS, AR_BOOK_FIELDS, Accordion, type AccordionItem, type AccordionProps, type ActionButtonConfig, ActionButtons, type ActionButtonsProps, Card as ActionCard, type CardProps as ActionCardProps, ActionPalette, type ActionPaletteProps, ActionTile, type ActionTileProps, Alert, type AlertProps, type AlertVariant, type AnimationDef, type AnimationName, type AudioManifest, AuthLayout, type AuthLayoutProps, Avatar, type AvatarProps, type AvatarSize, type AvatarStatus, Badge, type BadgeProps, type BadgeVariant, BattleBoard, type BattleBoardProps, type BattleEntity, type BattlePhase, type BattleSlotContext, type BattleStateCallbacks, type BattleStateEventConfig, type BattleStateResult, BattleTemplate, type BattleTemplateProps, type BattleTile, type BattleUnit, type BoardTile, type BookChapter, BookChapterView, type BookChapterViewProps, BookCoverPage, type BookCoverPageProps, type BookData, type BookFieldMap, BookNavBar, type BookNavBarProps, type BookPart, BookTableOfContents, type BookTableOfContentsProps, BookViewer, type BookViewerProps, Box, type BoxBg, type BoxMargin, type BoxPadding, type BoxProps, type BoxRounded, type BoxShadow, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, BuilderBoard, type BuilderBoardProps, type BuilderComponent, type BuilderPuzzleEntity, type BuilderSlot, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, type CalendarEvent, CalendarGrid, type CalendarGridProps, CameraState, CanvasEffect, type CanvasEffectProps, Card$1 as Card, type CardAction, CardBody, CardContent, CardFooter, CardGrid, type CardGridGap, type CardGridProps, CardHeader, type CardProps$1 as CardProps, CardTitle, CastleBoard, type CastleBoardProps, type CastleEntity, type CastleSlotContext, CastleTemplate, type CastleTemplateProps, Center, type CenterProps, Chart, type ChartDataPoint$1 as ChartDataPoint, ChartLegend, type ChartLegendItem, type ChartLegendProps, type ChartProps, type ChartSeries, type ChartType, Checkbox, type CheckboxProps, ClassifierBoard, type ClassifierBoardProps, type ClassifierCategory, type ClassifierItem, type ClassifierPuzzleEntity, CodeBlock, type CodeBlockProps, CodeView, type CodeViewProps, CodeViewer, type CodeViewerMode, type CodeViewerProps, CollapsibleSection, type CollapsibleSectionProps, type Column, type CombatActionType, type CombatEffect, type CombatEvent, type CombatEventData, type CombatEventType, CombatLog, type CombatLogEventType, type CombatLogProps, type ConditionalContext, ConditionalWrapper, type ConditionalWrapperProps, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogVariant, Container, type ContainerProps, ContentRenderer, type ContentRendererProps, ControlButton, type ControlButtonProps, type CounterSize, CounterTemplate, type CounterTemplateProps, type CounterVariant, DIAMOND_TOP_Y, DPad, type DPadDirection, type DPadProps, type DamageResult, DashboardGrid, type DashboardGridCell, type DashboardGridProps, DashboardLayout, type DashboardLayoutProps, DataGrid, type DataGridField, type DataGridItemAction, type DataGridProps, DataList, type DataListField, type DataListItemAction, type DataListProps, DataTable, type DataTableProps, DateRangeSelector, type DateRangeSelectorOption, type DateRangeSelectorProps, DayCell, type DayCellProps, DebuggerBoard, type DebuggerBoardProps, type DebuggerLine, type DebuggerPuzzleEntity, type DetailField, DetailPanel, type DetailPanelProps, type DetailSection, DialogueBox, type DialogueBoxProps, type DialogueChoice, type DialogueNode, type DiffLine, Divider, type DividerOrientation, type DividerProps, type DocumentType, DocumentViewer, type DocumentViewerProps, StateMachineView as DomStateMachineVisualizer, type DotSize, type DotState, Drawer, type DrawerPosition, type DrawerProps, type DrawerSize, DrawerSlot, type DrawerSlotProps, EditorCheckbox, type EditorCheckboxProps, type EditorMode, EditorSelect, type EditorSelectProps, EditorSlider, type EditorSliderProps, EditorTextInput, type EditorTextInputProps, EditorToolbar, type EditorToolbarProps, EmptyState, type EmptyStateProps, EntityDisplayEvents, type EntityDisplayProps, ErrorBoundary, type ErrorBoundaryProps, ErrorState, type ErrorStateProps, EventBusContextType, EventHandlerBoard, type EventHandlerBoardProps, type EventHandlerPuzzleEntity, EventLog, type EventLogEntry, type EventLogProps, FEATURE_COLORS, FEATURE_TYPES, FLOOR_HEIGHT, type FacingDirection, type FilterDefinition, FilterGroup, type FilterGroupProps, type FilterPayload, Flex, type FlexProps, FlipCard, type FlipCardProps, FlipContainer, type FlipContainerProps, FloatingActionButton, type FloatingActionButtonProps, Form, FormActions, type FormActionsProps, FormField, type FormFieldProps, FormLayout, type FormLayoutProps, type FormProps, FormSection$1 as FormSection, FormSectionHeader, type FormSectionHeaderProps, type FormSectionProps, type FrameDimsResolver, type GameAction, GameAudioContext, type GameAudioContextValue, type GameAudioControls, GameAudioProvider, type GameAudioProviderProps, GameAudioToggle, type GameAudioToggleProps, GameHud, type GameHudElement, type GameHudProps, type GameHudStat, GameMenu, type GameMenuProps, type GameOverAction, GameOverScreen, type GameOverScreenProps, type GameOverStat, type GamePhase, GameShell, type GameShellProps, type GameState, GameTemplate, type GameTemplateProps, type GameUnit, GenericAppTemplate, type GenericAppTemplateProps, GraphCanvas, type GraphCanvasProps, type GraphEdge, type GraphNode, GraphView, type GraphViewEdge, type GraphViewNode, type GraphViewProps, Grid, type GridProps, HStack, type HStackProps, Header, type HeaderProps, Heading, type HeadingProps, HealthBar, type HealthBarProps, type HighlightType, IDENTITY_BOOK_FIELDS, Icon, type IconAnimation, type IconProps, type IconSize, Input, InputGroup, type InputGroupProps, type InputProps, type InventoryItem, InventoryPanel, type InventoryPanelProps, IsometricCanvas, type IsometricCanvasProps, IsometricFeature, IsometricTile, IsometricUnit, JazariStateMachine, type JazariStateMachineProps, Label, type LabelProps, type LawReference, LawReferenceTooltip, type LawReferenceTooltipProps, LineChart, type LineChartProps, List, type ListItem, type ListProps, LoadingState, type LoadingStateProps, type MapHero, type MapHex, type MapMarkerData, MapView, type MapViewProps, MarkdownContent, type MarkdownContentProps, MasterDetail, type MasterDetailProps, type MeasurementPoint, MediaGallery, type MediaGalleryProps, type MediaItem, Menu, type MenuItem, type MenuOption, type MenuProps, Meter, type MeterProps, type MeterThreshold, type MeterVariant, Modal, type ModalProps, type ModalSize, ModalSlot, type ModalSlotProps, type NavItem, Navigation, type NavigationItem, type NavigationProps, type NegotiatorAction, NegotiatorBoard, type NegotiatorBoardProps, type NegotiatorPuzzleEntity, NotifyListener, ObjectRulePanel, type ObjectRulePanelProps, StateMachineView as OrbitalStateMachineView, OrbitalVisualization, type OrbitalVisualizationProps, Overlay, type OverlayProps, type PageBreadcrumb, PageHeader, type PageHeaderProps, type PaginatePayload, Pagination, type PaginationProps, type PayoffEntry, type Physics2DState, type PhysicsBody, type PhysicsBounds, type PhysicsConfig, type PhysicsConstraint, PhysicsManager, type PhysicsPreset, PlatformerCanvas, type PlatformerCanvasProps, type PlatformerPlatform, type PlatformerPlayer, Popover, type PopoverProps, type Position, ProgressBar, type ProgressBarColor, type ProgressBarProps, type ProgressBarVariant, ProgressDots, type ProgressDotsProps, type PuzzleObjectDef, QuizBlock, type QuizBlockProps, Radio, type RadioProps, type RelationOption, RelationSelect, type RelationSelectProps, RepeatableFormSection, type RepeatableFormSectionProps, type RepeatableItem, type ResolvedFrame, type RowAction, type RuleDefinition, RuleEditor, type RuleEditorProps, SHEET_COLUMNS, SPRITE_SHEET_LAYOUT, ScaledDiagram, type ScaledDiagramProps, ScoreDisplay, type ScoreDisplayProps, SearchInput, type SearchInputProps, type SearchPayload, Section, type SectionProps, Select, type SelectOption, type SelectPayload, type SelectProps, SequenceBar, type SequenceBarProps, SequencerBoard, type SequencerBoardProps, type SequencerPuzzleEntity, type SheetUrlResolver, SidePanel, type SidePanelProps, Sidebar, type SidebarItem, type SidebarProps, SignaturePad, type SignaturePadProps, SimpleGrid, type SimpleGridProps, SimulationCanvas, type SimulationCanvasProps, SimulationControls, type SimulationControlsProps, SimulationGraph, type SimulationGraphProps, SimulatorBoard, type SimulatorBoardProps, type SimulatorParameter, type SimulatorPuzzleEntity, Skeleton, type SkeletonProps, type SkeletonVariant, SlotContent, SlotContentRenderer, type SlotItemData, type SortDirection, type SortPayload, type SoundEntry, Spacer, type SpacerProps, type SpacerSize, Spinner, type SpinnerProps, Split, SplitPane, type SplitPaneProps, type SplitProps, Sprite, type SpriteDirection, type SpriteFrameDims, type SpriteProps, type SpriteSheetUrls, Stack, type StackAlign, type StackDirection, type StackGap, type StackJustify, type StackProps, StatBadge, type StatBadgeProps, StatCard, type StatCardProps, StateArchitectBoard, type StateArchitectBoardProps, type StateArchitectPuzzleEntity, type StateArchitectTransition, StateIndicator, type StateIndicatorProps, StateMachineView, type StateMachineViewProps, StateNode, type StateNodeProps, type StateStyle, StatusBar, type StatusBarProps, Switch, type SwitchProps, TERRAIN_COLORS, TILE_HEIGHT, TILE_WIDTH, type TabDefinition, type TabItem, TabbedContainer, type TabbedContainerProps, Table, type TableColumn, type TableProps, Tabs, type TabsProps, type TemplateProps, TerrainPalette, type TerrainPaletteProps, type TestCase, Text, TextHighlight, type TextHighlightProps, type TextProps, Textarea, type TextareaProps, ThemeSelector, ThemeToggle, type ThemeToggleProps, TimeSlotCell, type TimeSlotCellProps, Timeline, type TimelineItem, type TimelineItemStatus, type TimelineProps, Toast, type ToastProps, ToastSlot, type ToastSlotProps, type ToastVariant, Tooltip, type TooltipProps, TraitSlot, type TraitSlotProps, type TraitStateMachineDefinition, TraitStateViewer, type TraitStateViewerProps, type TraitTransition, TransitionArrow, type TransitionArrowProps, type TransitionBundle, Typography, type TypographyProps, type TypographyVariant, UISlot, UISlotComponent, UISlotRenderer, type UISlotRendererProps, UncontrolledBattleBoard, type UncontrolledBattleBoardProps, type UnitAnimationState, type UnitTrait, type UseGameAudioOptions, type UsePhysics2DOptions, type UsePhysics2DReturn, type UseSpriteAnimationsOptions, type UseSpriteAnimationsResult, VStack, type VStackProps, type VariableDef, VariablePanel, type VariablePanelProps, ViolationAlert, type ViolationAlertProps, type ViolationRecord, WizardContainer, type WizardContainerProps, WizardNavigation, type WizardNavigationProps, WizardProgress, type WizardProgressProps, type WizardProgressStep, type WizardStep, WorldMapBoard, type WorldMapBoardProps, type WorldMapEntity, type WorldMapSlotContext, WorldMapTemplate, type WorldMapTemplateProps, applyTemporaryEffect, calculateAttackTargets, calculateDamage, calculateValidMoves, combatAnimations, combatClasses, combatEffects, createInitialGameState, createUnitAnimationState, drawSprite, generateCombatMessage, getCurrentFrame, inferDirection, isoToScreen, mapBookData, pendulum, projectileMotion, resolveFieldMap, resolveFrame, resolveSheetDirection, screenToIso, springOscillator, tickAnimationState, transitionAnimation, useBattleState, useCamera, useGameAudio, useGameAudioContext, useImageCache, usePhysics2D, useSpriteAnimations };
9118
+ export { ALL_PRESETS, AR_BOOK_FIELDS, Accordion, type AccordionItem, type AccordionProps, type ActionButtonConfig, ActionButtons, type ActionButtonsProps, Card as ActionCard, type CardProps as ActionCardProps, ActionPalette, type ActionPaletteProps, ActionTile, type ActionTileProps, Alert, type AlertProps, type AlertVariant, AnimatedCounter, type AnimatedCounterProps, type AnimationDef, type AnimationName, type AudioManifest, AuthLayout, type AuthLayoutProps, Avatar, type AvatarProps, type AvatarSize, type AvatarStatus, Badge, type BadgeProps, type BadgeVariant, BattleBoard, type BattleBoardProps, type BattleEntity, type BattlePhase, type BattleSlotContext, type BattleStateCallbacks, type BattleStateEventConfig, type BattleStateResult, BattleTemplate, type BattleTemplateProps, type BattleTile, type BattleUnit, type BoardTile, type BookChapter, BookChapterView, type BookChapterViewProps, BookCoverPage, type BookCoverPageProps, type BookData, type BookFieldMap, BookNavBar, type BookNavBarProps, type BookPart, BookTableOfContents, type BookTableOfContentsProps, BookViewer, type BookViewerProps, Box, type BoxBg, type BoxMargin, type BoxPadding, type BoxProps, type BoxRounded, type BoxShadow, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, BuilderBoard, type BuilderBoardProps, type BuilderComponent, type BuilderPuzzleEntity, type BuilderSlot, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, type CalendarEvent, CalendarGrid, type CalendarGridProps, CameraState, CanvasEffect, type CanvasEffectProps, Card$1 as Card, type CardAction, CardBody, CardContent, CardFooter, CardGrid, type CardGridGap, type CardGridProps, CardHeader, type CardProps$1 as CardProps, CardTitle, Carousel, type CarouselProps, CastleBoard, type CastleBoardProps, type CastleEntity, type CastleSlotContext, CastleTemplate, type CastleTemplateProps, Center, type CenterProps, Chart, type ChartDataPoint$1 as ChartDataPoint, ChartLegend, type ChartLegendItem, type ChartLegendProps, type ChartProps, type ChartSeries, type ChartType, Checkbox, type CheckboxProps, ClassifierBoard, type ClassifierBoardProps, type ClassifierCategory, type ClassifierItem, type ClassifierPuzzleEntity, CodeBlock, type CodeBlockProps, CodeView, type CodeViewProps, CodeViewer, type CodeViewerMode, type CodeViewerProps, CollapsibleSection, type CollapsibleSectionProps, type Column, type CombatActionType, type CombatEffect, type CombatEvent, type CombatEventData, type CombatEventType, CombatLog, type CombatLogEventType, type CombatLogProps, type ConditionalContext, ConditionalWrapper, type ConditionalWrapperProps, ConfettiEffect, type ConfettiEffectProps, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogVariant, Container, type ContainerProps, ContentRenderer, type ContentRendererProps, ControlButton, type ControlButtonProps, type CounterSize, CounterTemplate, type CounterTemplateProps, type CounterVariant, DIAMOND_TOP_Y, DPad, type DPadDirection, type DPadProps, type DamageResult, DashboardGrid, type DashboardGridCell, type DashboardGridProps, DashboardLayout, type DashboardLayoutProps, DataGrid, type DataGridField, type DataGridItemAction, type DataGridProps, DataList, type DataListField, type DataListItemAction, type DataListProps, DataTable, type DataTableProps, DateRangeSelector, type DateRangeSelectorOption, type DateRangeSelectorProps, DayCell, type DayCellProps, DebuggerBoard, type DebuggerBoardProps, type DebuggerLine, type DebuggerPuzzleEntity, type DetailField, DetailPanel, type DetailPanelProps, type DetailSection, DialogueBox, type DialogueBoxProps, type DialogueChoice, type DialogueNode, type DiffLine, Divider, type DividerOrientation, type DividerProps, type DocumentType, DocumentViewer, type DocumentViewerProps, StateMachineView as DomStateMachineVisualizer, type DotSize, type DotState, Drawer, type DrawerPosition, type DrawerProps, type DrawerSize, DrawerSlot, type DrawerSlotProps, EditorCheckbox, type EditorCheckboxProps, type EditorMode, EditorSelect, type EditorSelectProps, EditorSlider, type EditorSliderProps, EditorTextInput, type EditorTextInputProps, EditorToolbar, type EditorToolbarProps, EmptyState, type EmptyStateProps, EntityDisplayEvents, type EntityDisplayProps, ErrorBoundary, type ErrorBoundaryProps, ErrorState, type ErrorStateProps, EventBusContextType, EventHandlerBoard, type EventHandlerBoardProps, type EventHandlerPuzzleEntity, EventLog, type EventLogEntry, type EventLogProps, FEATURE_COLORS, FEATURE_TYPES, FLOOR_HEIGHT, type FacingDirection, type FilterDefinition, FilterGroup, type FilterGroupProps, type FilterPayload, Flex, type FlexProps, FlipCard, type FlipCardProps, FlipContainer, type FlipContainerProps, FloatingActionButton, type FloatingActionButtonProps, Form, FormActions, type FormActionsProps, FormField, type FormFieldProps, FormLayout, type FormLayoutProps, type FormProps, FormSection$1 as FormSection, FormSectionHeader, type FormSectionHeaderProps, type FormSectionProps, type FrameDimsResolver, type GameAction, GameAudioContext, type GameAudioContextValue, type GameAudioControls, GameAudioProvider, type GameAudioProviderProps, GameAudioToggle, type GameAudioToggleProps, GameHud, type GameHudElement, type GameHudProps, type GameHudStat, GameMenu, type GameMenuProps, type GameOverAction, GameOverScreen, type GameOverScreenProps, type GameOverStat, type GamePhase, GameShell, type GameShellProps, type GameState, GameTemplate, type GameTemplateProps, type GameUnit, GenericAppTemplate, type GenericAppTemplateProps, GraphCanvas, type GraphCanvasProps, type GraphEdge, type GraphNode, GraphView, type GraphViewEdge, type GraphViewNode, type GraphViewProps, Grid, type GridProps, HStack, type HStackProps, Header, type HeaderProps, Heading, type HeadingProps, HealthBar, type HealthBarProps, type HighlightType, IDENTITY_BOOK_FIELDS, Icon, type IconAnimation, type IconProps, type IconSize, InfiniteScrollSentinel, type InfiniteScrollSentinelProps, Input, InputGroup, type InputGroupProps, type InputProps, type InventoryItem, InventoryPanel, type InventoryPanelProps, IsometricCanvas, type IsometricCanvasProps, IsometricFeature, IsometricTile, IsometricUnit, JazariStateMachine, type JazariStateMachineProps, Label, type LabelProps, type LawReference, LawReferenceTooltip, type LawReferenceTooltipProps, Lightbox, type LightboxImage, type LightboxProps, LineChart, type LineChartProps, List, type ListItem, type ListProps, LoadingState, type LoadingStateProps, type MapHero, type MapHex, type MapMarkerData, MapView, type MapViewProps, MarkdownContent, type MarkdownContentProps, MasterDetail, type MasterDetailProps, type MeasurementPoint, MediaGallery, type MediaGalleryProps, type MediaItem, Menu, type MenuItem, type MenuOption, type MenuProps, Meter, type MeterProps, type MeterThreshold, type MeterVariant, Modal, type ModalProps, type ModalSize, ModalSlot, type ModalSlotProps, type NavItem, Navigation, type NavigationItem, type NavigationProps, type NegotiatorAction, NegotiatorBoard, type NegotiatorBoardProps, type NegotiatorPuzzleEntity, NotifyListener, NumberStepper, type NumberStepperProps, type NumberStepperSize, ObjectRulePanel, type ObjectRulePanelProps, StateMachineView as OrbitalStateMachineView, OrbitalVisualization, type OrbitalVisualizationProps, Overlay, type OverlayProps, type PageBreadcrumb, PageHeader, type PageHeaderProps, type PaginatePayload, Pagination, type PaginationProps, type PayoffEntry, type Physics2DState, type PhysicsBody, type PhysicsBounds, type PhysicsConfig, type PhysicsConstraint, PhysicsManager, type PhysicsPreset, PlatformerCanvas, type PlatformerCanvasProps, type PlatformerPlatform, type PlatformerPlayer, Popover, type PopoverProps, type Position, ProgressBar, type ProgressBarColor, type ProgressBarProps, type ProgressBarVariant, ProgressDots, type ProgressDotsProps, PullToRefresh, type PullToRefreshProps, type PuzzleObjectDef, QuizBlock, type QuizBlockProps, Radio, type RadioProps, RangeSlider, type RangeSliderProps, type RangeSliderSize, type RelationOption, RelationSelect, type RelationSelectProps, RepeatableFormSection, type RepeatableFormSectionProps, type RepeatableItem, type ResolvedFrame, type RowAction, type RuleDefinition, RuleEditor, type RuleEditorProps, SHEET_COLUMNS, SPRITE_SHEET_LAYOUT, ScaledDiagram, type ScaledDiagramProps, ScoreDisplay, type ScoreDisplayProps, SearchInput, type SearchInputProps, type SearchPayload, Section, type SectionProps, Select, type SelectOption, type SelectPayload, type SelectProps, SequenceBar, type SequenceBarProps, SequencerBoard, type SequencerBoardProps, type SequencerPuzzleEntity, type SheetUrlResolver, SidePanel, type SidePanelProps, Sidebar, type SidebarItem, type SidebarProps, SignaturePad, type SignaturePadProps, SimpleGrid, type SimpleGridProps, SimulationCanvas, type SimulationCanvasProps, SimulationControls, type SimulationControlsProps, SimulationGraph, type SimulationGraphProps, SimulatorBoard, type SimulatorBoardProps, type SimulatorParameter, type SimulatorPuzzleEntity, Skeleton, type SkeletonProps, type SkeletonVariant, SlotContent, SlotContentRenderer, type SlotItemData, type SortDirection, type SortPayload, SortableList, type SortableListProps, type SoundEntry, Spacer, type SpacerProps, type SpacerSize, Spinner, type SpinnerProps, Split, SplitPane, type SplitPaneProps, type SplitProps, Sprite, type SpriteDirection, type SpriteFrameDims, type SpriteProps, type SpriteSheetUrls, Stack, type StackAlign, type StackDirection, type StackGap, type StackJustify, type StackProps, StarRating, type StarRatingPrecision, type StarRatingProps, type StarRatingSize, StatBadge, type StatBadgeProps, StatCard, type StatCardProps, StateArchitectBoard, type StateArchitectBoardProps, type StateArchitectPuzzleEntity, type StateArchitectTransition, StateIndicator, type StateIndicatorProps, StateMachineView, type StateMachineViewProps, StateNode, type StateNodeProps, type StateStyle, StatusBar, type StatusBarProps, StatusDot, type StatusDotProps, type StatusDotSize, type StatusDotStatus, type SwipeAction, SwipeableRow, type SwipeableRowProps, Switch, type SwitchProps, TERRAIN_COLORS, TILE_HEIGHT, TILE_WIDTH, type TabDefinition, type TabItem, TabbedContainer, type TabbedContainerProps, Table, type TableColumn, type TableProps, Tabs, type TabsProps, type TemplateProps, TerrainPalette, type TerrainPaletteProps, type TestCase, Text, TextHighlight, type TextHighlightProps, type TextProps, Textarea, type TextareaProps, ThemeSelector, ThemeToggle, type ThemeToggleProps, TimeSlotCell, type TimeSlotCellProps, Timeline, type TimelineItem, type TimelineItemStatus, type TimelineProps, Toast, type ToastProps, ToastSlot, type ToastSlotProps, type ToastVariant, Tooltip, type TooltipProps, TraitSlot, type TraitSlotProps, type TraitStateMachineDefinition, TraitStateViewer, type TraitStateViewerProps, type TraitTransition, TransitionArrow, type TransitionArrowProps, type TransitionBundle, type TrendDirection, TrendIndicator, type TrendIndicatorProps, type TrendIndicatorSize, TypewriterText, type TypewriterTextProps, Typography, type TypographyProps, type TypographyVariant, UISlot, UISlotComponent, UISlotRenderer, type UISlotRendererProps, UncontrolledBattleBoard, type UncontrolledBattleBoardProps, type UnitAnimationState, type UnitTrait, UploadDropZone, type UploadDropZoneProps, type UseGameAudioOptions, type UsePhysics2DOptions, type UsePhysics2DReturn, type UseSpriteAnimationsOptions, type UseSpriteAnimationsResult, VStack, type VStackProps, type VariableDef, VariablePanel, type VariablePanelProps, ViolationAlert, type ViolationAlertProps, type ViolationRecord, WizardContainer, type WizardContainerProps, WizardNavigation, type WizardNavigationProps, WizardProgress, type WizardProgressProps, type WizardProgressStep, type WizardStep, WorldMapBoard, type WorldMapBoardProps, type WorldMapEntity, type WorldMapSlotContext, WorldMapTemplate, type WorldMapTemplateProps, applyTemporaryEffect, calculateAttackTargets, calculateDamage, calculateValidMoves, combatAnimations, combatClasses, combatEffects, createInitialGameState, createUnitAnimationState, drawSprite, generateCombatMessage, getCurrentFrame, inferDirection, isoToScreen, mapBookData, pendulum, projectileMotion, resolveFieldMap, resolveFrame, resolveSheetDirection, screenToIso, springOscillator, tickAnimationState, transitionAnimation, useBattleState, useCamera, useGameAudio, useGameAudioContext, useImageCache, usePhysics2D, useSpriteAnimations };