@almadar/ui 5.121.4 → 5.122.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/avl/index.cjs +1499 -1413
- package/dist/avl/index.js +577 -491
- package/dist/components/index.cjs +1507 -1409
- package/dist/components/index.d.cts +166 -2
- package/dist/components/index.d.ts +166 -2
- package/dist/components/index.js +578 -481
- package/dist/context/index.cjs +24 -0
- package/dist/context/index.js +24 -0
- package/dist/marketing/index.cjs +8 -6
- package/dist/marketing/index.js +8 -6
- package/dist/providers/index.cjs +1382 -1296
- package/dist/providers/index.js +552 -466
- package/dist/runtime/index.cjs +1359 -1273
- package/dist/runtime/index.js +556 -470
- package/package.json +1 -1
- package/tailwind-preset.cjs +121 -2
- package/themes/_base.css +97 -5
- package/themes/_contract.md +25 -0
- package/themes/game-adventure.css +230 -0
- package/themes/game-rpg.css +228 -0
- package/themes/game-sci-fi.css +231 -0
- package/themes/game-ui-pack.css +229 -0
- package/themes/index.css +4 -0
|
@@ -1187,6 +1187,61 @@ interface OverlayProps {
|
|
|
1187
1187
|
}
|
|
1188
1188
|
declare const Overlay: React__default.FC<OverlayProps>;
|
|
1189
1189
|
|
|
1190
|
+
/**
|
|
1191
|
+
* Presence Atom — the single enter/leave animation mechanism.
|
|
1192
|
+
*
|
|
1193
|
+
* React unmounts children synchronously, so an exit animation is impossible
|
|
1194
|
+
* unless a wrapper keeps the child mounted for one more frame. `usePresence`
|
|
1195
|
+
* extracts Modal's `closing` + `onAnimationEnd` pattern into one reusable
|
|
1196
|
+
* hook; the `<Presence>` component is a thin wrapper for the arbitrary case.
|
|
1197
|
+
*
|
|
1198
|
+
* Every animated surface converges on this: Overlay/Drawer/SidePanel/Popover/
|
|
1199
|
+
* Toast call `usePresence` and spread the result onto their own element (no
|
|
1200
|
+
* extra wrapper div — important for fixed/absolute positioning). Token-driven:
|
|
1201
|
+
* the `animation` prop maps to the `animate-<name>-in/out` utilities, which
|
|
1202
|
+
* read `--motion-*` / `--duration-*` / `--easing-*`. Toggle off per-instance
|
|
1203
|
+
* (`animate={false}`), globally (`--motion-enable: off`), or via the OS
|
|
1204
|
+
* (`prefers-reduced-motion`, collapsed in `_base.css`).
|
|
1205
|
+
*
|
|
1206
|
+
* @packageDocumentation
|
|
1207
|
+
*/
|
|
1208
|
+
|
|
1209
|
+
type PresenceAnimation = "modal" | "overlay" | "slide-up" | "drawer" | "popover" | "toast" | "fade" | "page";
|
|
1210
|
+
interface UsePresenceOptions {
|
|
1211
|
+
/** Which motion preset to use (maps to `animate-<name>-in/out`). */
|
|
1212
|
+
animation: PresenceAnimation;
|
|
1213
|
+
/** Per-instance opt-out. Global opt-out is `--motion-enable` / reduced-motion. @default true */
|
|
1214
|
+
animate?: boolean;
|
|
1215
|
+
/** Fired after the exit animation completes (before unmount). */
|
|
1216
|
+
onExited?: () => void;
|
|
1217
|
+
}
|
|
1218
|
+
interface PresenceResult {
|
|
1219
|
+
/** Whether the element should be in the tree (enter or exit phase). */
|
|
1220
|
+
mounted: boolean;
|
|
1221
|
+
/** True during the exit animation. */
|
|
1222
|
+
exiting: boolean;
|
|
1223
|
+
/** Class to merge onto the animated element: `animate-<name>-in` or `-out` (empty if disabled). */
|
|
1224
|
+
className: string;
|
|
1225
|
+
/** Attach to the animated element's `onAnimationEnd`. */
|
|
1226
|
+
onAnimationEnd: (e: React__default.AnimationEvent) => void;
|
|
1227
|
+
}
|
|
1228
|
+
/**
|
|
1229
|
+
* The single enter/leave mechanism. Call from a molecule, spread `className`
|
|
1230
|
+
* (via `cn`) and `onAnimationEnd` onto the element that carries the animation.
|
|
1231
|
+
*/
|
|
1232
|
+
declare function usePresence(show: boolean, opts: UsePresenceOptions): PresenceResult;
|
|
1233
|
+
interface PresenceProps extends UsePresenceOptions {
|
|
1234
|
+
/** When false, the exit animation runs, then children unmount. */
|
|
1235
|
+
show: boolean;
|
|
1236
|
+
className?: string;
|
|
1237
|
+
children: React__default.ReactNode;
|
|
1238
|
+
}
|
|
1239
|
+
/**
|
|
1240
|
+
* Wrapper form of `usePresence` for arbitrary content that doesn't already
|
|
1241
|
+
* own its animated element. Renders a `<div>` carrying the animation class.
|
|
1242
|
+
*/
|
|
1243
|
+
declare const Presence: React__default.FC<PresenceProps>;
|
|
1244
|
+
|
|
1190
1245
|
/**
|
|
1191
1246
|
* FlipContainer — CSS 3D perspective atom (distinct from FlipCard molecule).
|
|
1192
1247
|
* Owns perspective/preserve-3d/rotateY only. Children are the raw face elements.
|
|
@@ -1236,6 +1291,12 @@ declare const Dialog: React__default.ForwardRefExoticComponent<DialogProps & Rea
|
|
|
1236
1291
|
* semantic-aside primitive without falling back to a raw element.
|
|
1237
1292
|
*/
|
|
1238
1293
|
|
|
1294
|
+
/**
|
|
1295
|
+
* Aside — a secondary side panel that hosts navigation links or supplementary
|
|
1296
|
+
* content alongside a main content area.
|
|
1297
|
+
*
|
|
1298
|
+
* @capabilities settings navigation sidebar, preferences menu panel, account settings nav, secondary panel, side navigation rail
|
|
1299
|
+
*/
|
|
1239
1300
|
interface AsideProps extends React__default.HTMLAttributes<HTMLElement> {
|
|
1240
1301
|
/** Additional CSS classes */
|
|
1241
1302
|
className?: string;
|
|
@@ -1580,6 +1641,12 @@ interface SectionHeaderProps {
|
|
|
1580
1641
|
declare const SectionHeader: React__default.FC<SectionHeaderProps>;
|
|
1581
1642
|
|
|
1582
1643
|
type StatCardSize = "sm" | "md" | "lg";
|
|
1644
|
+
/**
|
|
1645
|
+
* MarketingStatCard — a single number-highlight card pairing a large value
|
|
1646
|
+
* with a label and trend delta.
|
|
1647
|
+
*
|
|
1648
|
+
* @capabilities KPI card, metric tile, dashboard stat card, number card, big-number widget, stat highlight, key metric callout
|
|
1649
|
+
*/
|
|
1583
1650
|
interface MarketingStatCardProps {
|
|
1584
1651
|
/** The stat value to display prominently */
|
|
1585
1652
|
value: string;
|
|
@@ -3340,10 +3407,12 @@ interface GameShellProps {
|
|
|
3340
3407
|
children?: React__default.ReactNode;
|
|
3341
3408
|
/** Pattern slice tiled at low opacity across the surface (never cover-stretched). */
|
|
3342
3409
|
backgroundAsset?: Asset;
|
|
3343
|
-
/** 9-sliced panel
|
|
3410
|
+
/** Per-call-site 9-sliced panel override. Chrome normally comes from the active theme; most callers leave this unset. */
|
|
3344
3411
|
hudBackgroundAsset?: Asset;
|
|
3345
3412
|
/** Game font key (future | future-narrow | pixel | blocks | mini) or a CSS font-family. */
|
|
3346
3413
|
fontFamily?: string;
|
|
3414
|
+
/** Scopes an `@almadar/ui` theme (e.g. "game-sci-fi-dark") to this shell's subtree. */
|
|
3415
|
+
"data-theme"?: string;
|
|
3347
3416
|
}
|
|
3348
3417
|
declare const GameShell: React__default.FC<GameShellProps>;
|
|
3349
3418
|
|
|
@@ -3905,6 +3974,12 @@ interface FilterDefinition {
|
|
|
3905
3974
|
/** Options for select/toggle filters */
|
|
3906
3975
|
options?: readonly string[];
|
|
3907
3976
|
}
|
|
3977
|
+
/**
|
|
3978
|
+
* FilterGroup — a panel of filter controls that narrows a collection by field
|
|
3979
|
+
* values.
|
|
3980
|
+
*
|
|
3981
|
+
* @capabilities search refinement panel, facet filters, admin list filters, records filter sidebar, filter chips panel
|
|
3982
|
+
*/
|
|
3908
3983
|
interface FilterGroupProps {
|
|
3909
3984
|
/** Entity name to filter */
|
|
3910
3985
|
entity: string;
|
|
@@ -4305,6 +4380,30 @@ interface ModalProps {
|
|
|
4305
4380
|
}
|
|
4306
4381
|
declare const Modal: React__default.FC<ModalProps>;
|
|
4307
4382
|
|
|
4383
|
+
/**
|
|
4384
|
+
* PageTransition Molecule — animates routed content on navigation.
|
|
4385
|
+
*
|
|
4386
|
+
* Keyed by `locationKey` (the consumer passes `useLocation().pathname`), so a
|
|
4387
|
+
* route change remounts the subtree and re-runs the enter animation. The motion
|
|
4388
|
+
* shape is the `--motion-page-*` token (default translateY(8px) + fade); a theme
|
|
4389
|
+
* can make it a pure cross-fade, a larger slide, or instant via `--motion-enable`.
|
|
4390
|
+
*
|
|
4391
|
+
* Router-agnostic on purpose: `@almadar/ui` does not depend on any router. The
|
|
4392
|
+
* consumer supplies the key:
|
|
4393
|
+
*
|
|
4394
|
+
* <PageTransition locationKey={location.pathname}><Routes location={location} /></PageTransition>
|
|
4395
|
+
*
|
|
4396
|
+
* @packageDocumentation
|
|
4397
|
+
*/
|
|
4398
|
+
|
|
4399
|
+
interface PageTransitionProps {
|
|
4400
|
+
/** Value that changes on navigation (e.g. `location.pathname`). */
|
|
4401
|
+
locationKey: string;
|
|
4402
|
+
children: React__default.ReactNode;
|
|
4403
|
+
className?: string;
|
|
4404
|
+
}
|
|
4405
|
+
declare const PageTransition: React__default.FC<PageTransitionProps>;
|
|
4406
|
+
|
|
4308
4407
|
/**
|
|
4309
4408
|
* Pagination Molecule Component
|
|
4310
4409
|
*
|
|
@@ -5103,6 +5202,12 @@ declare const CodeBlock: React__default.NamedExoticComponent<CodeBlockProps>;
|
|
|
5103
5202
|
* - entityAware: false
|
|
5104
5203
|
*/
|
|
5105
5204
|
|
|
5205
|
+
/**
|
|
5206
|
+
* QuizBlock — a single quiz question with answer choices and submit/reveal
|
|
5207
|
+
* feedback.
|
|
5208
|
+
*
|
|
5209
|
+
* @capabilities multiple-choice quiz, test question, exam item, assessment question, knowledge check, trivia question
|
|
5210
|
+
*/
|
|
5106
5211
|
interface QuizBlockProps {
|
|
5107
5212
|
/** The quiz question */
|
|
5108
5213
|
question: string;
|
|
@@ -5217,6 +5322,12 @@ type RepeatableItem = {
|
|
|
5217
5322
|
addedAt?: string | null;
|
|
5218
5323
|
[key: string]: JsonValue | undefined;
|
|
5219
5324
|
};
|
|
5325
|
+
/**
|
|
5326
|
+
* RepeatableFormSection — a form section that repeats a fixed group of fields,
|
|
5327
|
+
* letting the user add or remove entries.
|
|
5328
|
+
*
|
|
5329
|
+
* @capabilities dynamic line items, repeatable field group, add/remove entry rows, multi-entry form block
|
|
5330
|
+
*/
|
|
5220
5331
|
interface RepeatableFormSectionProps {
|
|
5221
5332
|
/** Section type identifier */
|
|
5222
5333
|
sectionType: string;
|
|
@@ -5339,6 +5450,12 @@ declare const FormSectionHeader: React__default.FC<FormSectionHeaderProps>;
|
|
|
5339
5450
|
* absolute face positioning, and `front`/`back` ReactNode props for lolo consumers.
|
|
5340
5451
|
*/
|
|
5341
5452
|
|
|
5453
|
+
/**
|
|
5454
|
+
* FlipCard — flip card that reveals a hidden back face on tap or click,
|
|
5455
|
+
* toggling between a front and back content slot.
|
|
5456
|
+
*
|
|
5457
|
+
* @capabilities flashcard, study deck, spaced-repetition review card, memorization drill, quiz reveal card, question/answer card, before/after reveal, term-and-definition card
|
|
5458
|
+
*/
|
|
5342
5459
|
interface FlipCardProps {
|
|
5343
5460
|
/** Content rendered on the front face */
|
|
5344
5461
|
front: React__default.ReactNode;
|
|
@@ -6200,6 +6317,12 @@ interface DataGridItemAction {
|
|
|
6200
6317
|
/** Button variant */
|
|
6201
6318
|
variant?: 'primary' | 'secondary' | 'ghost' | 'danger';
|
|
6202
6319
|
}
|
|
6320
|
+
/**
|
|
6321
|
+
* DataGrid — structured records grid rendering rows over configurable columns,
|
|
6322
|
+
* with sort, select, and drag-reorder.
|
|
6323
|
+
*
|
|
6324
|
+
* @capabilities admin table, records grid, user list, CRUD list, manage-records view, spreadsheet-style data grid, sortable columns
|
|
6325
|
+
*/
|
|
6203
6326
|
interface DataGridProps extends DataDndProps {
|
|
6204
6327
|
/**
|
|
6205
6328
|
* Schema entity data — the collection of rows to render. pattern-sync tags
|
|
@@ -6446,6 +6569,12 @@ interface TableViewItemAction {
|
|
|
6446
6569
|
/** Button variant. */
|
|
6447
6570
|
variant?: 'primary' | 'secondary' | 'ghost' | 'danger';
|
|
6448
6571
|
}
|
|
6572
|
+
/**
|
|
6573
|
+
* TableView — sortable, selectable data table rendering rows over configurable
|
|
6574
|
+
* columns, with inline row actions and grouping.
|
|
6575
|
+
*
|
|
6576
|
+
* @capabilities admin console table, records list, CRUD data table, user list, manage-users grid, sortable columns, row selection with bulk actions, grouped list view
|
|
6577
|
+
*/
|
|
6449
6578
|
interface TableViewProps extends DataDndProps {
|
|
6450
6579
|
/** Schema entity data — the collection of rows to render. */
|
|
6451
6580
|
entity: readonly EntityRow[];
|
|
@@ -6646,6 +6775,11 @@ declare const SwipeableRow: React__default.FC<SwipeableRowProps>;
|
|
|
6646
6775
|
* when item ordering is user-controlled.
|
|
6647
6776
|
*/
|
|
6648
6777
|
|
|
6778
|
+
/**
|
|
6779
|
+
* SortableList — a drag-and-drop reorderable list of items.
|
|
6780
|
+
*
|
|
6781
|
+
* @capabilities checklist, task list, to-do list, priority list, ranked list, drag-to-reorder queue
|
|
6782
|
+
*/
|
|
6649
6783
|
interface SortableListProps {
|
|
6650
6784
|
items: readonly EntityRow[];
|
|
6651
6785
|
/** Render function for each item. In .lolo: renderItem: (fn item <Component …={@item.field}/>), binding per-item fields via @item.field. */
|
|
@@ -6746,6 +6880,12 @@ declare const InstallBox: React__default.FC<InstallBoxProps>;
|
|
|
6746
6880
|
* Composes Card, VStack, Icon, Typography, and Button atoms.
|
|
6747
6881
|
*/
|
|
6748
6882
|
|
|
6883
|
+
/**
|
|
6884
|
+
* FeatureCard — an icon-led card pairing a title and description to call out a
|
|
6885
|
+
* single product feature.
|
|
6886
|
+
*
|
|
6887
|
+
* @capabilities feature highlight, benefit callout, product capability card, feature-grid tile
|
|
6888
|
+
*/
|
|
6749
6889
|
interface FeatureCardProps {
|
|
6750
6890
|
icon?: IconInput;
|
|
6751
6891
|
/** Feature title */
|
|
@@ -6845,6 +6985,12 @@ declare const HeroSection: React__default.FC<HeroSectionProps>;
|
|
|
6845
6985
|
* Composes atoms: Card, VStack, HStack, Badge, Typography, Icon, Divider, Spacer, Button.
|
|
6846
6986
|
*/
|
|
6847
6987
|
|
|
6988
|
+
/**
|
|
6989
|
+
* PricingCard — a single pricing-tier card with price, billing period, feature
|
|
6990
|
+
* list, and call-to-action.
|
|
6991
|
+
*
|
|
6992
|
+
* @capabilities pricing tier, plan card, subscription tier, plan comparison card, price plan
|
|
6993
|
+
*/
|
|
6848
6994
|
interface PricingCardProps {
|
|
6849
6995
|
name: string;
|
|
6850
6996
|
price: string;
|
|
@@ -6916,6 +7062,12 @@ declare const ServiceCatalog: React__default.FC<ServiceCatalogProps>;
|
|
|
6916
7062
|
* description, and a call-to-action link button.
|
|
6917
7063
|
*/
|
|
6918
7064
|
|
|
7065
|
+
/**
|
|
7066
|
+
* CaseStudyCard — a card summarizing a customer case study with logo, headline
|
|
7067
|
+
* result, and link.
|
|
7068
|
+
*
|
|
7069
|
+
* @capabilities customer story, success story, client story card, results showcase, proof-point card
|
|
7070
|
+
*/
|
|
6919
7071
|
interface CaseStudyCardProps {
|
|
6920
7072
|
/** Case study title */
|
|
6921
7073
|
title: string;
|
|
@@ -7830,6 +7982,12 @@ declare const BehaviorView: React__default.FC<BehaviorViewProps>;
|
|
|
7830
7982
|
* - Pages section: AvlPage squares with route labels
|
|
7831
7983
|
*/
|
|
7832
7984
|
|
|
7985
|
+
/**
|
|
7986
|
+
* ModuleCard — a card summarizing one course module or lesson with progress
|
|
7987
|
+
* and entry point.
|
|
7988
|
+
*
|
|
7989
|
+
* @capabilities course module card, lesson card, curriculum unit card, learning-path step card
|
|
7990
|
+
*/
|
|
7833
7991
|
interface ModuleCardProps {
|
|
7834
7992
|
data: AvlNodeData;
|
|
7835
7993
|
}
|
|
@@ -8726,6 +8884,12 @@ declare const Chart: React__default.FC<ChartProps>;
|
|
|
8726
8884
|
* - className for external styling
|
|
8727
8885
|
*/
|
|
8728
8886
|
|
|
8887
|
+
/**
|
|
8888
|
+
* SignaturePad — a draw-to-sign canvas that captures a handwritten signature
|
|
8889
|
+
* or initials.
|
|
8890
|
+
*
|
|
8891
|
+
* @capabilities e-signature capture, sign-here field, consent signature, initial-here field, wet-signature substitute
|
|
8892
|
+
*/
|
|
8729
8893
|
interface SignaturePadProps {
|
|
8730
8894
|
/** Label above the pad */
|
|
8731
8895
|
label?: string;
|
|
@@ -11266,4 +11430,4 @@ interface AboutPageTemplateProps extends TemplateProps<AboutPageEntity> {
|
|
|
11266
11430
|
}
|
|
11267
11431
|
declare const AboutPageTemplate: React__default.FC<AboutPageTemplateProps>;
|
|
11268
11432
|
|
|
11269
|
-
export { ALL_PRESETS, AR_BOOK_FIELDS, type AboutPageEntity, AboutPageTemplate, type AboutPageTemplateProps, Accordion, type AccordionItem, type AccordionProps, Card as ActionCard, type CardProps as ActionCardProps, ActionPalette, type ActionPaletteProps, ActionTile, type ActionTileProps, ActivationBlock, type ActivationBlockProps, Alert, type AlertProps, type AlertVariant, type AlgorithmBar, AlgorithmCanvas, type AlgorithmCanvasProps, type AlgorithmCell, type AlgorithmPointer, AnimatedCounter, type AnimatedCounterProps, AnimatedGraphic, type AnimatedGraphicProps, AnimatedReveal, type AnimatedRevealProps, ArticleSection, type ArticleSectionProps, Aside, type AsideProps, AssetPicker, type AssetPickerProps, AtlasImage, type AtlasImageAsset, type AtlasImageProps, AtlasPanel, type AtlasPanelProps, AuthLayout, type AuthLayoutProps, Avatar, type AvatarProps, type AvatarSize, type AvatarStatus, Badge, type BadgeProps, type BadgeVariant, BehaviorView, type BehaviorViewProps, BiologyCanvas, type BiologyCanvasProps, type BiologyEdge, type BiologyNode, type BlockType, type BloomLevel, BloomQuizBlock, type BloomQuizBlockProps, BookChapterView, type BookChapterViewProps, BookCoverPage, type BookCoverPageProps, type BookFieldMap, BookNavBar, type BookNavBarProps, BookTableOfContents, type BookTableOfContentsProps, BookViewer, type BookViewerProps, Box, type BoxBg, type BoxMargin, type BoxPadding, type BoxProps, type BoxRounded, type BoxShadow, BranchingLogicBuilder, type BranchingLogicBuilderProps, type BranchingQuestion, type BranchingRule, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, CTABanner, type CTABannerBackground, type CTABannerProps, CalendarGrid, type CalendarGridProps, type CameraMode, CameraState, Canvas, Canvas2D, type Canvas2DProps, type CanvasItemShape, type CanvasItemStatus, type CanvasMode, type CanvasProps, Card$1 as Card, type CardAction, CardBody, CardContent, CardFooter, CardGrid, type CardGridGap, type CardGridProps, CardHeader, type CardProps$1 as CardProps, CardTitle, Carousel, type CarouselProps, CaseStudyCard, type CaseStudyCardProps, CaseStudyOrganism, type CaseStudyOrganismProps, Center, type CenterProps, Chart, type ChartDataPoint, ChartLegend, type ChartLegendItem, type ChartLegendProps, type ChartProps, type ChartSeries, type ChartType, ChatBar, type ChatBarProps, type ChatBarStatus, Checkbox, type CheckboxProps, type ChemistryArrow, type ChemistryAtom, type ChemistryBond, ChemistryCanvas, type ChemistryCanvasProps, ChoiceButton, type ChoiceButtonProps, Coachmark, type CoachmarkAnchor, type CoachmarkPlacement, type CoachmarkProps, CodeBlock, type CodeBlockProps, type CodeLanguage, CodeRunnerPanel, type CodeRunnerPanelProps, type CodeSimulationOutput, type CodeViewerAction, type CodeViewerFile, type CodeViewerMode, CollapsibleSection, type CollapsibleSectionProps, type Column, CommunityLinks, type CommunityLinksProps, type ConditionalContext, ConditionalWrapper, type ConditionalWrapperProps, ConfettiEffect, type ConfettiEffectProps, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogVariant, ConnectionBlock, type ConnectionBlockProps, Container, type ContainerProps, ContentRenderer, type ContentRendererProps, ContentSection, type ContentSectionBackground, type ContentSectionPadding, type ContentSectionProps, ControlButton, type ControlButtonProps, ControlGrid, type ControlGridButton, type ControlGridKind, type ControlGridProps, type CounterSize, CounterTemplate, type CounterTemplateProps, type CounterVariant, DEFAULT_LIKERT_OPTIONS, DEFAULT_MATRIX_COLUMNS, DIAMOND_TOP_Y, type DPadDirection, 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, DateRangePicker, type DateRangePickerPreset, type DateRangePickerProps, DateRangeSelector, type DateRangeSelectorOption, type DateRangeSelectorProps, DayCell, type DayCellProps, type DetailField, DetailPanel, type DetailPanelProps, type DetailSection, Dialog, type DialogProps, DialogueBubble, type DialogueBubbleProps, type DiffLine$1 as DiffLine, type DiffLineType, type DiffRevision, type DisplayStateProps, Divider, type DividerOrientation, type DividerProps, DocBreadcrumb, type DocBreadcrumbItem, type DocBreadcrumbProps, DocPagination, type DocPaginationLink, type DocPaginationProps, DocSearch, type DocSearchProps, type DocSearchResult, DocSidebar, type DocSidebarItem, type DocSidebarProps, DocTOC, type DocTOCItem, type DocTOCProps, type DocumentType, DocumentViewer, type DocumentViewerProps, StateMachineView as DomStateMachineVisualizer, type DotSize, type DotState, Drawer, type DrawerPosition, type DrawerProps, type DrawerSize, DrawerSlot, type DrawerSlotProps, ELEMENT_SELECTED_EVENT, EdgeDecoration, type EdgeDecorationProps, type EdgeSide, type EdgeVariant, EditorCheckbox, type EditorCheckboxProps, type EditorMode, EditorSelect, type EditorSelectProps, EditorSlider, type EditorSliderProps, EditorTextInput, type EditorTextInputProps, EditorToolbar, type EditorToolbarProps, EmptyState, type EmptyStateProps, EntityDisplayEvents, ErrorBoundary, type ErrorBoundaryProps, ErrorState, type ErrorStateProps, FEATURE_COLORS, FEATURE_TYPES, FLOOR_HEIGHT, FacingDirection, FeatureCard, type FeatureCardProps, type FeatureDetailPageEntity, FeatureDetailPageTemplate, type FeatureDetailPageTemplateProps, type FeatureDetailSection, FeatureGrid, FeatureGridOrganism, type FeatureGridOrganismProps, type FeatureGridProps, FileTree, type FileTreeNode, type FileTreeProps, type FilterDefinition, FilterGroup, type FilterGroupProps, type FilterPayload, FilterPill, type FilterPillProps, type FilterPillSize, type FilterPillVariant, Flex, type FlexProps, FlipCard, type FlipCardProps, FlipContainer, type FlipContainerProps, type FloatingAction, FloatingActionButton, type FloatingActionButtonProps, type FooterLinkColumn, type FooterLinkItem, Form, FormActions, type FormActionsProps, FormField, type FormFieldProps, FormLayout, type FormLayoutProps, type FormProps, FormSection$1 as FormSection, FormSectionHeader, type FormSectionHeaderProps, type FormSectionProps, GameAudioToggle, type GameAudioToggleProps, GameHud, type GameHudElement, type GameHudProps, type GameHudStat, GameIcon, type GameIconProps, GameMenu, type GameMenuProps, GameShell, type GameShellProps, GenericAppTemplate, type GenericAppTemplateProps, GeometricPattern, type GeometricPatternProps, GradientDivider, type GradientDividerProps, GraphCanvas, type GraphCanvasProps, type GraphEdge, type GraphNode, type GraphSimilarity, GraphView, type GraphViewEdge, type GraphViewNode, type GraphViewProps, type GraphicAnimation, Grid, GridPicker, type GridPickerCellSize, type GridPickerProps, type GridProps, HStack, type HStackProps, Header, type HeaderProps, HealthBar, type HealthBarProps, HeroOrganism, type HeroOrganismProps, HeroSection, type HeroSectionProps, type HighlightType, IDENTITY_BOOK_FIELDS, Icon, type IconAnimation, type IconInput, IconPicker, type IconPickerProps, type IconProps, type IconSize, ImageSource, InfiniteScrollSentinel, type InfiniteScrollSentinelProps, Input, InputGroup, type InputGroupProps, type InputProps, InstallBox, type InstallBoxProps, IsometricUnit, JazariStateMachine, type JazariStateMachineProps, JsonTreeEditor, type JsonTreeEditorProps, Label, type LabelProps, type LandingPageEntity, LandingPageTemplate, type LandingPageTemplateProps, type LawReference, LawReferenceTooltip, type LawReferenceTooltipProps, LearningCanvas, type LearningCanvasProps, type LearningPhysicsBody, type LearningPhysicsConstraint, type LearningPoint, type LearningShape, type LearningShapeType, type LessonSegment, type LessonUserProgress, Lightbox, type LightboxImage, type LightboxProps, type LikertOption, LikertScale, type LikertScaleProps, LineChart, type LineChartProps, LinkAction, List, type ListItem, type ListProps, LoadingState, type LoadingStateProps, type MapMarkerData, type MapRouteData, type MapRouteWaypoint, MapView, type MapViewProps, MarkdownContent, type MarkdownContentProps, MarketingFooter, type MarketingFooterProps, MarketingStatCard, type MarketingStatCardProps, MasterDetail, MasterDetailLayout, type MasterDetailLayoutProps, type MasterDetailProps, MathCanvas, type MathCanvasProps, type MathCurve, type MathPoint, type MathVector, type MatrixColumn, MatrixQuestion, type MatrixQuestionProps, type MatrixRow, MediaGallery, type MediaGalleryProps, type MediaItem, Menu, type MenuItem, type MenuOption, type MenuProps, Meter, type MeterAction, type MeterProps, type MeterThreshold, type MeterVariant, type MixedSegment, Modal, type ModalProps, type ModalSize, ModalSlot, type ModalSlotProps, ModuleCard, type ModuleCardProps, type NavItem, Navigation, type NavigationItem, type NavigationProps, NodeSlotEditor, type NodeSlotEditorProps, NotifyListener, NumberStepper, type NumberStepperProps, type NumberStepperSize, OnboardingSpotlight, type OnboardingSpotlightProps, type OptionConstraint, OptionConstraintGroup, type OptionConstraintGroupProps, type OptionConstraintOption, StateMachineView as OrbitalStateMachineView, OrbitalVisualization, type OrbitalVisualizationProps, Overlay, type OverlayProps, type PageBreadcrumb, PageHeader, type PageHeaderProps, type PaginatePayload, Pagination, type PaginationProps, PatternTile, type PatternTileProps, type PatternVariant, PhysicsCanvas, type PhysicsCanvasProps, type PickerItem, type Platform, Point, Popover, type PopoverProps, PositionedCanvas, type PositionedCanvasProps, PricingCard, type PricingCardProps, PricingGrid, type PricingGridProps, PricingOrganism, type PricingOrganismProps, type PricingPageEntity, PricingPageTemplate, type PricingPageTemplateProps, ProgressBar, type ProgressBarColor, type ProgressBarProps, type ProgressBarVariant, ProgressDots, type ProgressDotsProps, type Projection, PropertyInspector, type PropertyInspectorProps, PullQuote, type PullQuoteProps, PullToRefresh, type PullToRefreshProps, type QrScanResult, QrScanner, type QrScannerProps, QuizBlock, type QuizBlockProps, Radio, type RadioProps, RangeSlider, type RangeSliderProps, type RangeSliderSize, ReflectionBlock, type ReflectionBlockProps, type RelationOption, RelationSelect, type RelationSelectProps, RepeatableFormSection, type RepeatableFormSectionProps, type RepeatableItem, ReplyTree, type ReplyTreeProps, ResolvedFrame, type RevealAnimation, type RevealTrigger, type RichBlock, RichBlockEditor, type RichBlockEditorProps, type RowAction, type RuleDefinition, type RuleOption, RuntimeDebugger, type RuntimeDebuggerProps, SHEET_COLUMNS, SPRITE_SHEET_LAYOUT, ScaledDiagram, type ScaledDiagramProps, ScoreDisplay, type ScoreDisplayProps, SearchInput, type SearchInputProps, type SearchPayload, Section, SectionHeader, type SectionHeaderProps, type SectionProps, SegmentRenderer, type SegmentRendererProps, Select, type SelectOption, type SelectOptionGroup, type SelectPayload, type SelectProps, SequenceBar, type SequenceBarProps, ServiceCatalog, type ServiceCatalogItem, type ServiceCatalogProps, ShowcaseCard, type ShowcaseCardProps, ShowcaseOrganism, type ShowcaseOrganismProps, SidePanel, type SidePanelProps, type SidePlayer, Sidebar, type SidebarItem, type SidebarProps, SignaturePad, type SignaturePadProps, SimpleGrid, type SimpleGridProps, Skeleton, type SkeletonProps, type SkeletonVariant, SlotContent, SlotContentRenderer, type SlotItemData, SocialProof, type SocialProofItem, type SocialProofProps, type SortPayload, SortableList, type SortableListProps, Spacer, type SpacerProps, type SpacerSize, Sparkline, type SparklineColor, type SparklineProps, Spinner, type SpinnerProps, Split, SplitPane, type SplitPaneProps, type SplitProps, SplitSection, type SplitSectionProps, type SpotlightStep, SpriteFrameDims, 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, type StatCardSize, StatDisplay, type StatDisplayProps, StateGraph, type StateGraphProps, type StateGraphTransition, StateJsonView, type StateJsonViewProps, StateMachineView, type StateMachineViewProps, StateNode, type StateNodeProps, StatsGrid, type StatsGridProps, StatsOrganism, type StatsOrganismProps, StatusBar, type StatusBarProps, StatusDot, type StatusDotProps, type StatusDotSize, type StatusDotStatus, StepFlow, StepFlowOrganism, type StepFlowOrganismProps, type StepFlowProps, type StepItemProps, SubagentTracePanel, type SubagentTracePanelProps, SvgBranch, type SvgBranchProps, SvgConnection, type SvgConnectionProps, SvgFlow, type SvgFlowProps, SvgGrid, type SvgGridProps, SvgLobe, type SvgLobeProps, SvgMesh, type SvgMeshProps, SvgMorph, type SvgMorphProps, SvgNode, type SvgNodeProps, SvgPulse, type SvgPulseProps, SvgRing, type SvgRingProps, SvgShield, type SvgShieldProps, SvgStack, type SvgStackProps, type SwipeAction, SwipeableRow, type SwipeableRowProps, Switch, type SwitchProps, TERRAIN_COLORS, TILE_HEIGHT, TILE_WIDTH, type TabDefinition, type TabItem, TabbedContainer, type TabbedContainerProps, TableView, type TableViewColumn, type TableViewProps, Tabs, type TabsProps, TagCloud, type TagCloudItem, type TagCloudProps, TagInput, type TagInputProps, TeamCard, type TeamCardProps, TeamOrganism, type TeamOrganismProps, type TeamUnitTraits, type TemplateProps, TerrainPalette, type TerrainPaletteProps, TextHighlight, type TextHighlightProps, Textarea, type TextareaProps, ThemeToggle, type ThemeToggleProps, type TileCoord, type TileLayout, TimeSlotCell, type TimeSlotCellProps, Timeline, type TimelineItem, type TimelineItemStatus, type TimelineProps, TimerDisplay, type TimerDisplayProps, Toast, type ToastProps, ToastSlot, type ToastSlotProps, type ToastVariant, Tooltip, type TooltipProps, type TraceDisclosureLevel, TraitFrame, type TraitFrameProps, 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, UISlotComponent, UISlotRenderer, type UISlotRendererProps, UiError, UnitAnimationState, UploadDropZone, type UploadDropZoneProps, VStack, type VStackProps, type Vec2, VersionDiff, type DiffLine as VersionDiffLine, type VersionDiffProps, ViolationAlert, type ViolationAlertProps, type ViolationRecord, VoteStack, type VoteStackProps, WizardContainer, type WizardContainerProps, WizardNavigation, type WizardNavigationProps, WizardProgress, type WizardProgressProps, type WizardProgressStep, type WizardStep, boardEntity, bool, createUnitAnimationState, getCurrentFrame, getTileDimensions, inferDirection, isoToScreen, makeAsset, makeAssetMap, mapBookData, num, objAvailableActions, objAvailableEvents, objCurrentState, objIcon, objId, objMaxRules, objName, objRules, objStates, parseEditFocus, parseLessonSegments, parseMarkdownWithCodeBlocks, pendulum, projectileMotion, resolveFieldMap, resolveFrame, resolveSheetDirection, rows, screenToIso, springOscillator, str, tickAnimationState, toCodeLanguage, transitionAnimation, unitHealth, unitPosition, unitTeam, useAnchorRect, useAtlasSliceDataUrl, useCamera, useImageCache, useUnitSpriteAtlas, vec2 };
|
|
11433
|
+
export { ALL_PRESETS, AR_BOOK_FIELDS, type AboutPageEntity, AboutPageTemplate, type AboutPageTemplateProps, Accordion, type AccordionItem, type AccordionProps, Card as ActionCard, type CardProps as ActionCardProps, ActionPalette, type ActionPaletteProps, ActionTile, type ActionTileProps, ActivationBlock, type ActivationBlockProps, Alert, type AlertProps, type AlertVariant, type AlgorithmBar, AlgorithmCanvas, type AlgorithmCanvasProps, type AlgorithmCell, type AlgorithmPointer, AnimatedCounter, type AnimatedCounterProps, AnimatedGraphic, type AnimatedGraphicProps, AnimatedReveal, type AnimatedRevealProps, ArticleSection, type ArticleSectionProps, Aside, type AsideProps, AssetPicker, type AssetPickerProps, AtlasImage, type AtlasImageAsset, type AtlasImageProps, AtlasPanel, type AtlasPanelProps, AuthLayout, type AuthLayoutProps, Avatar, type AvatarProps, type AvatarSize, type AvatarStatus, Badge, type BadgeProps, type BadgeVariant, BehaviorView, type BehaviorViewProps, BiologyCanvas, type BiologyCanvasProps, type BiologyEdge, type BiologyNode, type BlockType, type BloomLevel, BloomQuizBlock, type BloomQuizBlockProps, BookChapterView, type BookChapterViewProps, BookCoverPage, type BookCoverPageProps, type BookFieldMap, BookNavBar, type BookNavBarProps, BookTableOfContents, type BookTableOfContentsProps, BookViewer, type BookViewerProps, Box, type BoxBg, type BoxMargin, type BoxPadding, type BoxProps, type BoxRounded, type BoxShadow, BranchingLogicBuilder, type BranchingLogicBuilderProps, type BranchingQuestion, type BranchingRule, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, CTABanner, type CTABannerBackground, type CTABannerProps, CalendarGrid, type CalendarGridProps, type CameraMode, CameraState, Canvas, Canvas2D, type Canvas2DProps, type CanvasItemShape, type CanvasItemStatus, type CanvasMode, type CanvasProps, Card$1 as Card, type CardAction, CardBody, CardContent, CardFooter, CardGrid, type CardGridGap, type CardGridProps, CardHeader, type CardProps$1 as CardProps, CardTitle, Carousel, type CarouselProps, CaseStudyCard, type CaseStudyCardProps, CaseStudyOrganism, type CaseStudyOrganismProps, Center, type CenterProps, Chart, type ChartDataPoint, ChartLegend, type ChartLegendItem, type ChartLegendProps, type ChartProps, type ChartSeries, type ChartType, ChatBar, type ChatBarProps, type ChatBarStatus, Checkbox, type CheckboxProps, type ChemistryArrow, type ChemistryAtom, type ChemistryBond, ChemistryCanvas, type ChemistryCanvasProps, ChoiceButton, type ChoiceButtonProps, Coachmark, type CoachmarkAnchor, type CoachmarkPlacement, type CoachmarkProps, CodeBlock, type CodeBlockProps, type CodeLanguage, CodeRunnerPanel, type CodeRunnerPanelProps, type CodeSimulationOutput, type CodeViewerAction, type CodeViewerFile, type CodeViewerMode, CollapsibleSection, type CollapsibleSectionProps, type Column, CommunityLinks, type CommunityLinksProps, type ConditionalContext, ConditionalWrapper, type ConditionalWrapperProps, ConfettiEffect, type ConfettiEffectProps, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogVariant, ConnectionBlock, type ConnectionBlockProps, Container, type ContainerProps, ContentRenderer, type ContentRendererProps, ContentSection, type ContentSectionBackground, type ContentSectionPadding, type ContentSectionProps, ControlButton, type ControlButtonProps, ControlGrid, type ControlGridButton, type ControlGridKind, type ControlGridProps, type CounterSize, CounterTemplate, type CounterTemplateProps, type CounterVariant, DEFAULT_LIKERT_OPTIONS, DEFAULT_MATRIX_COLUMNS, DIAMOND_TOP_Y, type DPadDirection, 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, DateRangePicker, type DateRangePickerPreset, type DateRangePickerProps, DateRangeSelector, type DateRangeSelectorOption, type DateRangeSelectorProps, DayCell, type DayCellProps, type DetailField, DetailPanel, type DetailPanelProps, type DetailSection, Dialog, type DialogProps, DialogueBubble, type DialogueBubbleProps, type DiffLine$1 as DiffLine, type DiffLineType, type DiffRevision, type DisplayStateProps, Divider, type DividerOrientation, type DividerProps, DocBreadcrumb, type DocBreadcrumbItem, type DocBreadcrumbProps, DocPagination, type DocPaginationLink, type DocPaginationProps, DocSearch, type DocSearchProps, type DocSearchResult, DocSidebar, type DocSidebarItem, type DocSidebarProps, DocTOC, type DocTOCItem, type DocTOCProps, type DocumentType, DocumentViewer, type DocumentViewerProps, StateMachineView as DomStateMachineVisualizer, type DotSize, type DotState, Drawer, type DrawerPosition, type DrawerProps, type DrawerSize, DrawerSlot, type DrawerSlotProps, ELEMENT_SELECTED_EVENT, EdgeDecoration, type EdgeDecorationProps, type EdgeSide, type EdgeVariant, EditorCheckbox, type EditorCheckboxProps, type EditorMode, EditorSelect, type EditorSelectProps, EditorSlider, type EditorSliderProps, EditorTextInput, type EditorTextInputProps, EditorToolbar, type EditorToolbarProps, EmptyState, type EmptyStateProps, EntityDisplayEvents, ErrorBoundary, type ErrorBoundaryProps, ErrorState, type ErrorStateProps, FEATURE_COLORS, FEATURE_TYPES, FLOOR_HEIGHT, FacingDirection, FeatureCard, type FeatureCardProps, type FeatureDetailPageEntity, FeatureDetailPageTemplate, type FeatureDetailPageTemplateProps, type FeatureDetailSection, FeatureGrid, FeatureGridOrganism, type FeatureGridOrganismProps, type FeatureGridProps, FileTree, type FileTreeNode, type FileTreeProps, type FilterDefinition, FilterGroup, type FilterGroupProps, type FilterPayload, FilterPill, type FilterPillProps, type FilterPillSize, type FilterPillVariant, Flex, type FlexProps, FlipCard, type FlipCardProps, FlipContainer, type FlipContainerProps, type FloatingAction, FloatingActionButton, type FloatingActionButtonProps, type FooterLinkColumn, type FooterLinkItem, Form, FormActions, type FormActionsProps, FormField, type FormFieldProps, FormLayout, type FormLayoutProps, type FormProps, FormSection$1 as FormSection, FormSectionHeader, type FormSectionHeaderProps, type FormSectionProps, GameAudioToggle, type GameAudioToggleProps, GameHud, type GameHudElement, type GameHudProps, type GameHudStat, GameIcon, type GameIconProps, GameMenu, type GameMenuProps, GameShell, type GameShellProps, GenericAppTemplate, type GenericAppTemplateProps, GeometricPattern, type GeometricPatternProps, GradientDivider, type GradientDividerProps, GraphCanvas, type GraphCanvasProps, type GraphEdge, type GraphNode, type GraphSimilarity, GraphView, type GraphViewEdge, type GraphViewNode, type GraphViewProps, type GraphicAnimation, Grid, GridPicker, type GridPickerCellSize, type GridPickerProps, type GridProps, HStack, type HStackProps, Header, type HeaderProps, HealthBar, type HealthBarProps, HeroOrganism, type HeroOrganismProps, HeroSection, type HeroSectionProps, type HighlightType, IDENTITY_BOOK_FIELDS, Icon, type IconAnimation, type IconInput, IconPicker, type IconPickerProps, type IconProps, type IconSize, ImageSource, InfiniteScrollSentinel, type InfiniteScrollSentinelProps, Input, InputGroup, type InputGroupProps, type InputProps, InstallBox, type InstallBoxProps, IsometricUnit, JazariStateMachine, type JazariStateMachineProps, JsonTreeEditor, type JsonTreeEditorProps, Label, type LabelProps, type LandingPageEntity, LandingPageTemplate, type LandingPageTemplateProps, type LawReference, LawReferenceTooltip, type LawReferenceTooltipProps, LearningCanvas, type LearningCanvasProps, type LearningPhysicsBody, type LearningPhysicsConstraint, type LearningPoint, type LearningShape, type LearningShapeType, type LessonSegment, type LessonUserProgress, Lightbox, type LightboxImage, type LightboxProps, type LikertOption, LikertScale, type LikertScaleProps, LineChart, type LineChartProps, LinkAction, List, type ListItem, type ListProps, LoadingState, type LoadingStateProps, type MapMarkerData, type MapRouteData, type MapRouteWaypoint, MapView, type MapViewProps, MarkdownContent, type MarkdownContentProps, MarketingFooter, type MarketingFooterProps, MarketingStatCard, type MarketingStatCardProps, MasterDetail, MasterDetailLayout, type MasterDetailLayoutProps, type MasterDetailProps, MathCanvas, type MathCanvasProps, type MathCurve, type MathPoint, type MathVector, type MatrixColumn, MatrixQuestion, type MatrixQuestionProps, type MatrixRow, MediaGallery, type MediaGalleryProps, type MediaItem, Menu, type MenuItem, type MenuOption, type MenuProps, Meter, type MeterAction, type MeterProps, type MeterThreshold, type MeterVariant, type MixedSegment, Modal, type ModalProps, type ModalSize, ModalSlot, type ModalSlotProps, ModuleCard, type ModuleCardProps, type NavItem, Navigation, type NavigationItem, type NavigationProps, NodeSlotEditor, type NodeSlotEditorProps, NotifyListener, NumberStepper, type NumberStepperProps, type NumberStepperSize, OnboardingSpotlight, type OnboardingSpotlightProps, type OptionConstraint, OptionConstraintGroup, type OptionConstraintGroupProps, type OptionConstraintOption, StateMachineView as OrbitalStateMachineView, OrbitalVisualization, type OrbitalVisualizationProps, Overlay, type OverlayProps, type PageBreadcrumb, PageHeader, type PageHeaderProps, PageTransition, type PageTransitionProps, type PaginatePayload, Pagination, type PaginationProps, PatternTile, type PatternTileProps, type PatternVariant, PhysicsCanvas, type PhysicsCanvasProps, type PickerItem, type Platform, Point, Popover, type PopoverProps, PositionedCanvas, type PositionedCanvasProps, Presence, type PresenceAnimation, type PresenceProps, type PresenceResult, PricingCard, type PricingCardProps, PricingGrid, type PricingGridProps, PricingOrganism, type PricingOrganismProps, type PricingPageEntity, PricingPageTemplate, type PricingPageTemplateProps, ProgressBar, type ProgressBarColor, type ProgressBarProps, type ProgressBarVariant, ProgressDots, type ProgressDotsProps, type Projection, PropertyInspector, type PropertyInspectorProps, PullQuote, type PullQuoteProps, PullToRefresh, type PullToRefreshProps, type QrScanResult, QrScanner, type QrScannerProps, QuizBlock, type QuizBlockProps, Radio, type RadioProps, RangeSlider, type RangeSliderProps, type RangeSliderSize, ReflectionBlock, type ReflectionBlockProps, type RelationOption, RelationSelect, type RelationSelectProps, RepeatableFormSection, type RepeatableFormSectionProps, type RepeatableItem, ReplyTree, type ReplyTreeProps, ResolvedFrame, type RevealAnimation, type RevealTrigger, type RichBlock, RichBlockEditor, type RichBlockEditorProps, type RowAction, type RuleDefinition, type RuleOption, RuntimeDebugger, type RuntimeDebuggerProps, SHEET_COLUMNS, SPRITE_SHEET_LAYOUT, ScaledDiagram, type ScaledDiagramProps, ScoreDisplay, type ScoreDisplayProps, SearchInput, type SearchInputProps, type SearchPayload, Section, SectionHeader, type SectionHeaderProps, type SectionProps, SegmentRenderer, type SegmentRendererProps, Select, type SelectOption, type SelectOptionGroup, type SelectPayload, type SelectProps, SequenceBar, type SequenceBarProps, ServiceCatalog, type ServiceCatalogItem, type ServiceCatalogProps, ShowcaseCard, type ShowcaseCardProps, ShowcaseOrganism, type ShowcaseOrganismProps, SidePanel, type SidePanelProps, type SidePlayer, Sidebar, type SidebarItem, type SidebarProps, SignaturePad, type SignaturePadProps, SimpleGrid, type SimpleGridProps, Skeleton, type SkeletonProps, type SkeletonVariant, SlotContent, SlotContentRenderer, type SlotItemData, SocialProof, type SocialProofItem, type SocialProofProps, type SortPayload, SortableList, type SortableListProps, Spacer, type SpacerProps, type SpacerSize, Sparkline, type SparklineColor, type SparklineProps, Spinner, type SpinnerProps, Split, SplitPane, type SplitPaneProps, type SplitProps, SplitSection, type SplitSectionProps, type SpotlightStep, SpriteFrameDims, 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, type StatCardSize, StatDisplay, type StatDisplayProps, StateGraph, type StateGraphProps, type StateGraphTransition, StateJsonView, type StateJsonViewProps, StateMachineView, type StateMachineViewProps, StateNode, type StateNodeProps, StatsGrid, type StatsGridProps, StatsOrganism, type StatsOrganismProps, StatusBar, type StatusBarProps, StatusDot, type StatusDotProps, type StatusDotSize, type StatusDotStatus, StepFlow, StepFlowOrganism, type StepFlowOrganismProps, type StepFlowProps, type StepItemProps, SubagentTracePanel, type SubagentTracePanelProps, SvgBranch, type SvgBranchProps, SvgConnection, type SvgConnectionProps, SvgFlow, type SvgFlowProps, SvgGrid, type SvgGridProps, SvgLobe, type SvgLobeProps, SvgMesh, type SvgMeshProps, SvgMorph, type SvgMorphProps, SvgNode, type SvgNodeProps, SvgPulse, type SvgPulseProps, SvgRing, type SvgRingProps, SvgShield, type SvgShieldProps, SvgStack, type SvgStackProps, type SwipeAction, SwipeableRow, type SwipeableRowProps, Switch, type SwitchProps, TERRAIN_COLORS, TILE_HEIGHT, TILE_WIDTH, type TabDefinition, type TabItem, TabbedContainer, type TabbedContainerProps, TableView, type TableViewColumn, type TableViewProps, Tabs, type TabsProps, TagCloud, type TagCloudItem, type TagCloudProps, TagInput, type TagInputProps, TeamCard, type TeamCardProps, TeamOrganism, type TeamOrganismProps, type TeamUnitTraits, type TemplateProps, TerrainPalette, type TerrainPaletteProps, TextHighlight, type TextHighlightProps, Textarea, type TextareaProps, ThemeToggle, type ThemeToggleProps, type TileCoord, type TileLayout, TimeSlotCell, type TimeSlotCellProps, Timeline, type TimelineItem, type TimelineItemStatus, type TimelineProps, TimerDisplay, type TimerDisplayProps, Toast, type ToastProps, ToastSlot, type ToastSlotProps, type ToastVariant, Tooltip, type TooltipProps, type TraceDisclosureLevel, TraitFrame, type TraitFrameProps, 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, UISlotComponent, UISlotRenderer, type UISlotRendererProps, UiError, UnitAnimationState, UploadDropZone, type UploadDropZoneProps, type UsePresenceOptions, VStack, type VStackProps, type Vec2, VersionDiff, type DiffLine as VersionDiffLine, type VersionDiffProps, ViolationAlert, type ViolationAlertProps, type ViolationRecord, VoteStack, type VoteStackProps, WizardContainer, type WizardContainerProps, WizardNavigation, type WizardNavigationProps, WizardProgress, type WizardProgressProps, type WizardProgressStep, type WizardStep, boardEntity, bool, createUnitAnimationState, getCurrentFrame, getTileDimensions, inferDirection, isoToScreen, makeAsset, makeAssetMap, mapBookData, num, objAvailableActions, objAvailableEvents, objCurrentState, objIcon, objId, objMaxRules, objName, objRules, objStates, parseEditFocus, parseLessonSegments, parseMarkdownWithCodeBlocks, pendulum, projectileMotion, resolveFieldMap, resolveFrame, resolveSheetDirection, rows, screenToIso, springOscillator, str, tickAnimationState, toCodeLanguage, transitionAnimation, unitHealth, unitPosition, unitTeam, useAnchorRect, useAtlasSliceDataUrl, useCamera, useImageCache, usePresence, useUnitSpriteAtlas, vec2 };
|