@almadar/ui 5.128.0 → 5.129.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 +296 -5
- package/dist/avl/index.js +296 -5
- package/dist/components/index.cjs +299 -5
- package/dist/components/index.d.cts +119 -1
- package/dist/components/index.d.ts +119 -1
- package/dist/components/index.js +300 -6
- package/dist/providers/index.cjs +296 -5
- package/dist/providers/index.js +296 -5
- package/dist/runtime/index.cjs +296 -5
- package/dist/runtime/index.js +296 -5
- package/package.json +6 -5
- package/scripts/audit-tailwind-safelist.ts +237 -0
- package/scripts/export-static.js +61 -0
- package/scripts/generate-design-system.ts +344 -0
- package/scripts/generate-theme-from-schema.ts +480 -0
- package/scripts/generate.ts +835 -0
- package/scripts/strip-base-tokens-from-themes.mjs +179 -0
- package/scripts/suggest-components.ts +508 -0
- package/scripts/theme-contrast-audit.mjs +132 -0
- package/scripts/types.ts +282 -0
- package/themes/_contract.md +1 -1
|
@@ -9131,6 +9131,124 @@ interface GraphCanvasProps {
|
|
|
9131
9131
|
}
|
|
9132
9132
|
declare const GraphCanvas: React__default.FC<GraphCanvasProps>;
|
|
9133
9133
|
|
|
9134
|
+
/**
|
|
9135
|
+
* ImportSourcePicker Molecule
|
|
9136
|
+
*
|
|
9137
|
+
* Source-selection menu for importing external data: paste text, markdown
|
|
9138
|
+
* file upload, and a generic "more sources" slot. Pure render — props in,
|
|
9139
|
+
* events out. Follows atomic design: composes Box, Icon, Typography atoms.
|
|
9140
|
+
*/
|
|
9141
|
+
|
|
9142
|
+
interface ImportSourceOption {
|
|
9143
|
+
/** Source identifier passed to onSelect */
|
|
9144
|
+
id: string;
|
|
9145
|
+
/** Option label */
|
|
9146
|
+
label: string;
|
|
9147
|
+
/** Description below the label */
|
|
9148
|
+
description?: string;
|
|
9149
|
+
/** Lucide icon name or component */
|
|
9150
|
+
icon?: IconInput;
|
|
9151
|
+
/** 'action' calls onSelect; 'file' opens a file picker and calls onFilesSelected */
|
|
9152
|
+
kind?: 'action' | 'file';
|
|
9153
|
+
/** Accepted file types for kind='file' (e.g. ".md,text/markdown") */
|
|
9154
|
+
accept?: string;
|
|
9155
|
+
/** Allow multiple files for kind='file' */
|
|
9156
|
+
multiple?: boolean;
|
|
9157
|
+
/** Disable the option */
|
|
9158
|
+
disabled?: boolean;
|
|
9159
|
+
}
|
|
9160
|
+
interface ImportSourcePickerProps {
|
|
9161
|
+
/** Source options to render */
|
|
9162
|
+
sources: ImportSourceOption[];
|
|
9163
|
+
/** Called with the source id when an 'action' option is picked */
|
|
9164
|
+
onSelect?: (sourceId: string) => void;
|
|
9165
|
+
/** Called with the chosen files when a 'file' option resolves */
|
|
9166
|
+
onFilesSelected?: (files: File[]) => void;
|
|
9167
|
+
/** Optional heading above the options */
|
|
9168
|
+
title?: string;
|
|
9169
|
+
/** Generic slot for additional sources rendered below the options */
|
|
9170
|
+
moreSources?: React__default.ReactNode;
|
|
9171
|
+
/** Additional CSS classes */
|
|
9172
|
+
className?: string;
|
|
9173
|
+
}
|
|
9174
|
+
declare const ImportSourcePicker: React__default.FC<ImportSourcePickerProps>;
|
|
9175
|
+
|
|
9176
|
+
/**
|
|
9177
|
+
* ImportPreviewTree Molecule
|
|
9178
|
+
*
|
|
9179
|
+
* Staged import preview: generic units grouped by targetEntity, nested by
|
|
9180
|
+
* parentRef, with per-unit field summaries, a skipped-elements section, and
|
|
9181
|
+
* confirm/cancel actions. Pure render — props in, events out.
|
|
9182
|
+
* Follows atomic design: composes Box, Badge, Button, Icon, Typography atoms.
|
|
9183
|
+
*/
|
|
9184
|
+
|
|
9185
|
+
interface ImportPreviewUnit {
|
|
9186
|
+
/** Staging ref, provenance-linked to a source span */
|
|
9187
|
+
ref: string;
|
|
9188
|
+
/** Target entity name */
|
|
9189
|
+
targetEntity: string;
|
|
9190
|
+
/** Mapped field values */
|
|
9191
|
+
fields: Record<string, FieldValue>;
|
|
9192
|
+
/** Staging ref of the unit this nests under */
|
|
9193
|
+
parentRef?: string;
|
|
9194
|
+
}
|
|
9195
|
+
interface ImportSkippedElement {
|
|
9196
|
+
ref: string;
|
|
9197
|
+
reason: string;
|
|
9198
|
+
}
|
|
9199
|
+
interface ImportEntityDisplay {
|
|
9200
|
+
singular: string;
|
|
9201
|
+
plural: string;
|
|
9202
|
+
}
|
|
9203
|
+
interface ImportPreviewTreeProps {
|
|
9204
|
+
/** Staged units to preview */
|
|
9205
|
+
units: ImportPreviewUnit[];
|
|
9206
|
+
/** Elements skipped during extraction, with reasons */
|
|
9207
|
+
skipped?: ImportSkippedElement[];
|
|
9208
|
+
/** Entity name → display labels; falls back to the entity name */
|
|
9209
|
+
entityDisplay: Record<string, ImportEntityDisplay>;
|
|
9210
|
+
/** Called when the user confirms the staged import */
|
|
9211
|
+
onConfirm?: () => void;
|
|
9212
|
+
/** Called when the user cancels the staged import */
|
|
9213
|
+
onCancel?: () => void;
|
|
9214
|
+
/** Confirm button label */
|
|
9215
|
+
confirmLabel?: string;
|
|
9216
|
+
/** Cancel button label */
|
|
9217
|
+
cancelLabel?: string;
|
|
9218
|
+
/** Indent per tree depth in px (default: 16) */
|
|
9219
|
+
indent?: number;
|
|
9220
|
+
/** Additional CSS classes */
|
|
9221
|
+
className?: string;
|
|
9222
|
+
}
|
|
9223
|
+
declare const ImportPreviewTree: React__default.FC<ImportPreviewTreeProps>;
|
|
9224
|
+
|
|
9225
|
+
/**
|
|
9226
|
+
* ImportProgress Molecule
|
|
9227
|
+
*
|
|
9228
|
+
* Step indicator for the import job lifecycle
|
|
9229
|
+
* (fetching → mapping → reviewing → committing → done | failed) with
|
|
9230
|
+
* staged/committed/failed counts. Pure render — props in, events out.
|
|
9231
|
+
* Follows atomic design: composes Box, Badge, Icon, Typography atoms.
|
|
9232
|
+
*/
|
|
9233
|
+
|
|
9234
|
+
type ImportProgressStep = 'fetching' | 'mapping' | 'reviewing' | 'committing' | 'done' | 'failed';
|
|
9235
|
+
interface ImportProgressCounts {
|
|
9236
|
+
staged?: number;
|
|
9237
|
+
committed?: number;
|
|
9238
|
+
failed?: number;
|
|
9239
|
+
}
|
|
9240
|
+
interface ImportProgressProps {
|
|
9241
|
+
/** Current lifecycle step */
|
|
9242
|
+
step: ImportProgressStep;
|
|
9243
|
+
/** Unit counts */
|
|
9244
|
+
counts?: ImportProgressCounts;
|
|
9245
|
+
/** Step label overrides */
|
|
9246
|
+
labels?: Partial<Record<ImportProgressStep, string>>;
|
|
9247
|
+
/** Additional CSS classes */
|
|
9248
|
+
className?: string;
|
|
9249
|
+
}
|
|
9250
|
+
declare const ImportProgress: React__default.FC<ImportProgressProps>;
|
|
9251
|
+
|
|
9134
9252
|
/**
|
|
9135
9253
|
* ActivationBlock Molecule Component
|
|
9136
9254
|
*
|
|
@@ -11473,4 +11591,4 @@ interface AboutPageTemplateProps extends TemplateProps<AboutPageEntity> {
|
|
|
11473
11591
|
}
|
|
11474
11592
|
declare const AboutPageTemplate: React__default.FC<AboutPageTemplateProps>;
|
|
11475
11593
|
|
|
11476
|
-
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, type CodeLanguageLoader, 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, type PrismLanguageGrammar, 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, registerCodeLanguageLoader, resolveFieldMap, resolveFrame, resolveSheetDirection, rows, screenToIso, springOscillator, str, tickAnimationState, toCodeLanguage, transitionAnimation, unitHealth, unitPosition, unitTeam, useAnchorRect, useAtlasSliceDataUrl, useCamera, useImageCache, usePresence, useUnitSpriteAtlas, vec2 };
|
|
11594
|
+
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, type CodeLanguageLoader, 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, type ImportEntityDisplay, ImportPreviewTree, type ImportPreviewTreeProps, type ImportPreviewUnit, ImportProgress, type ImportProgressCounts, type ImportProgressProps, type ImportProgressStep, type ImportSkippedElement, type ImportSourceOption, ImportSourcePicker, type ImportSourcePickerProps, 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, type PrismLanguageGrammar, 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, registerCodeLanguageLoader, resolveFieldMap, resolveFrame, resolveSheetDirection, rows, screenToIso, springOscillator, str, tickAnimationState, toCodeLanguage, transitionAnimation, unitHealth, unitPosition, unitTeam, useAnchorRect, useAtlasSliceDataUrl, useCamera, useImageCache, usePresence, useUnitSpriteAtlas, vec2 };
|
package/dist/components/index.js
CHANGED
|
@@ -28547,12 +28547,12 @@ var init_MapView = __esm({
|
|
|
28547
28547
|
shadowSize: [41, 41]
|
|
28548
28548
|
});
|
|
28549
28549
|
L.Marker.prototype.options.icon = defaultIcon;
|
|
28550
|
-
const { useEffect: useEffect65, useRef:
|
|
28550
|
+
const { useEffect: useEffect65, useRef: useRef63, useCallback: useCallback105, useState: useState102 } = React74__default;
|
|
28551
28551
|
const { Typography: Typography2 } = await Promise.resolve().then(() => (init_Typography(), Typography_exports));
|
|
28552
28552
|
const { useEventBus: useEventBus2 } = await Promise.resolve().then(() => (init_useEventBus(), useEventBus_exports));
|
|
28553
28553
|
function MapUpdater({ centerLat, centerLng, zoom }) {
|
|
28554
28554
|
const map = useMap();
|
|
28555
|
-
const prevRef =
|
|
28555
|
+
const prevRef = useRef63({ centerLat, centerLng, zoom });
|
|
28556
28556
|
useEffect65(() => {
|
|
28557
28557
|
const prev = prevRef.current;
|
|
28558
28558
|
if (prev.centerLat !== centerLat || prev.centerLng !== centerLng || prev.zoom !== zoom) {
|
|
@@ -37742,6 +37742,293 @@ var init_GraphCanvas = __esm({
|
|
|
37742
37742
|
GraphCanvas.displayName = "GraphCanvas";
|
|
37743
37743
|
}
|
|
37744
37744
|
});
|
|
37745
|
+
var ImportSourcePicker;
|
|
37746
|
+
var init_ImportSourcePicker = __esm({
|
|
37747
|
+
"components/core/molecules/import/ImportSourcePicker.tsx"() {
|
|
37748
|
+
"use client";
|
|
37749
|
+
init_Box();
|
|
37750
|
+
init_Icon();
|
|
37751
|
+
init_Typography();
|
|
37752
|
+
init_cn();
|
|
37753
|
+
ImportSourcePicker = ({
|
|
37754
|
+
sources,
|
|
37755
|
+
onSelect,
|
|
37756
|
+
onFilesSelected,
|
|
37757
|
+
title,
|
|
37758
|
+
moreSources,
|
|
37759
|
+
className
|
|
37760
|
+
}) => {
|
|
37761
|
+
const fileInputRef = useRef(null);
|
|
37762
|
+
const handlePick = (source) => {
|
|
37763
|
+
if (source.disabled) return;
|
|
37764
|
+
if (source.kind === "file") {
|
|
37765
|
+
const input = fileInputRef.current;
|
|
37766
|
+
if (!input) return;
|
|
37767
|
+
input.accept = source.accept ?? "";
|
|
37768
|
+
input.multiple = source.multiple ?? false;
|
|
37769
|
+
input.click();
|
|
37770
|
+
return;
|
|
37771
|
+
}
|
|
37772
|
+
onSelect?.(source.id);
|
|
37773
|
+
};
|
|
37774
|
+
const handleFiles = (event) => {
|
|
37775
|
+
const files = event.target.files ? Array.from(event.target.files) : [];
|
|
37776
|
+
event.target.value = "";
|
|
37777
|
+
if (files.length > 0) onFilesSelected?.(files);
|
|
37778
|
+
};
|
|
37779
|
+
return /* @__PURE__ */ jsxs(Box, { className: cn("flex flex-col gap-2", className), children: [
|
|
37780
|
+
title ? /* @__PURE__ */ jsx(Typography, { variant: "h4", children: title }) : null,
|
|
37781
|
+
sources.map((source) => /* @__PURE__ */ jsxs(
|
|
37782
|
+
Box,
|
|
37783
|
+
{
|
|
37784
|
+
role: "button",
|
|
37785
|
+
tabIndex: source.disabled ? -1 : 0,
|
|
37786
|
+
"aria-disabled": source.disabled,
|
|
37787
|
+
onClick: () => handlePick(source),
|
|
37788
|
+
onKeyDown: (event) => {
|
|
37789
|
+
if (event.key === "Enter" || event.key === " ") {
|
|
37790
|
+
event.preventDefault();
|
|
37791
|
+
handlePick(source);
|
|
37792
|
+
}
|
|
37793
|
+
},
|
|
37794
|
+
className: cn(
|
|
37795
|
+
"flex items-center gap-3 rounded-md border border-border bg-card px-4 py-3 text-left",
|
|
37796
|
+
source.disabled ? "opacity-50 cursor-not-allowed" : "cursor-pointer hover:bg-accent hover:text-accent-foreground"
|
|
37797
|
+
),
|
|
37798
|
+
children: [
|
|
37799
|
+
source.icon ? /* @__PURE__ */ jsx(Icon, { icon: source.icon, size: "md" }) : null,
|
|
37800
|
+
/* @__PURE__ */ jsxs(Box, { className: "flex flex-col", children: [
|
|
37801
|
+
/* @__PURE__ */ jsx(Typography, { variant: "label", children: source.label }),
|
|
37802
|
+
source.description ? /* @__PURE__ */ jsx(Typography, { variant: "caption", className: "text-muted-foreground", children: source.description }) : null
|
|
37803
|
+
] })
|
|
37804
|
+
]
|
|
37805
|
+
},
|
|
37806
|
+
source.id
|
|
37807
|
+
)),
|
|
37808
|
+
moreSources,
|
|
37809
|
+
/* @__PURE__ */ jsx(
|
|
37810
|
+
"input",
|
|
37811
|
+
{
|
|
37812
|
+
ref: fileInputRef,
|
|
37813
|
+
type: "file",
|
|
37814
|
+
className: "hidden",
|
|
37815
|
+
onChange: handleFiles,
|
|
37816
|
+
"data-testid": "import-source-file-input"
|
|
37817
|
+
}
|
|
37818
|
+
)
|
|
37819
|
+
] });
|
|
37820
|
+
};
|
|
37821
|
+
}
|
|
37822
|
+
});
|
|
37823
|
+
function formatFieldValue(value) {
|
|
37824
|
+
if (value === null) return "\u2014";
|
|
37825
|
+
if (value instanceof Date) return value.toISOString();
|
|
37826
|
+
if (Array.isArray(value)) return value.map(formatFieldValue).join(", ");
|
|
37827
|
+
if (typeof value === "object") return JSON.stringify(value);
|
|
37828
|
+
return String(value);
|
|
37829
|
+
}
|
|
37830
|
+
function unitTitle(unit) {
|
|
37831
|
+
for (const key of TITLE_KEYS) {
|
|
37832
|
+
const value = unit.fields[key];
|
|
37833
|
+
if (typeof value === "string" && value.length > 0) return value;
|
|
37834
|
+
}
|
|
37835
|
+
return unit.ref;
|
|
37836
|
+
}
|
|
37837
|
+
function fieldSummary(unit) {
|
|
37838
|
+
return Object.entries(unit.fields).filter(([key]) => !TITLE_KEYS.includes(key)).map(([key, value]) => `${key}: ${formatFieldValue(value)}`).join(" \xB7 ");
|
|
37839
|
+
}
|
|
37840
|
+
var TITLE_KEYS, ImportPreviewTree;
|
|
37841
|
+
var init_ImportPreviewTree = __esm({
|
|
37842
|
+
"components/core/molecules/import/ImportPreviewTree.tsx"() {
|
|
37843
|
+
"use client";
|
|
37844
|
+
init_Box();
|
|
37845
|
+
init_Badge();
|
|
37846
|
+
init_Button();
|
|
37847
|
+
init_Icon();
|
|
37848
|
+
init_Typography();
|
|
37849
|
+
init_cn();
|
|
37850
|
+
TITLE_KEYS = ["title", "name", "label"];
|
|
37851
|
+
ImportPreviewTree = ({
|
|
37852
|
+
units,
|
|
37853
|
+
skipped = [],
|
|
37854
|
+
entityDisplay,
|
|
37855
|
+
onConfirm,
|
|
37856
|
+
onCancel,
|
|
37857
|
+
confirmLabel = "Confirm import",
|
|
37858
|
+
cancelLabel = "Cancel",
|
|
37859
|
+
indent = 16,
|
|
37860
|
+
className
|
|
37861
|
+
}) => {
|
|
37862
|
+
const groups = /* @__PURE__ */ new Map();
|
|
37863
|
+
for (const unit of units) {
|
|
37864
|
+
const group = groups.get(unit.targetEntity);
|
|
37865
|
+
if (group) group.push(unit);
|
|
37866
|
+
else groups.set(unit.targetEntity, [unit]);
|
|
37867
|
+
}
|
|
37868
|
+
const renderUnit = (unit, childrenByParent, depth) => {
|
|
37869
|
+
const summary = fieldSummary(unit);
|
|
37870
|
+
const children = childrenByParent.get(unit.ref) ?? [];
|
|
37871
|
+
return /* @__PURE__ */ jsxs(React74__default.Fragment, { children: [
|
|
37872
|
+
/* @__PURE__ */ jsxs(
|
|
37873
|
+
Box,
|
|
37874
|
+
{
|
|
37875
|
+
className: "flex flex-col py-1",
|
|
37876
|
+
style: { paddingLeft: depth * indent },
|
|
37877
|
+
"data-testid": `import-preview-unit-${unit.ref}`,
|
|
37878
|
+
children: [
|
|
37879
|
+
/* @__PURE__ */ jsxs(Box, { className: "flex items-center gap-2", children: [
|
|
37880
|
+
/* @__PURE__ */ jsx(Icon, { icon: "file-text", size: "xs", className: "text-muted-foreground" }),
|
|
37881
|
+
/* @__PURE__ */ jsx(Typography, { variant: "body2", children: unitTitle(unit) })
|
|
37882
|
+
] }),
|
|
37883
|
+
summary ? /* @__PURE__ */ jsx(Typography, { variant: "caption", className: "text-muted-foreground", children: summary }) : null
|
|
37884
|
+
]
|
|
37885
|
+
}
|
|
37886
|
+
),
|
|
37887
|
+
children.map((child) => renderUnit(child, childrenByParent, depth + 1))
|
|
37888
|
+
] }, unit.ref);
|
|
37889
|
+
};
|
|
37890
|
+
return /* @__PURE__ */ jsxs(Box, { className: cn("flex flex-col gap-4", className), children: [
|
|
37891
|
+
units.length === 0 ? /* @__PURE__ */ jsx(Typography, { variant: "body2", className: "text-muted-foreground", children: "No units staged." }) : null,
|
|
37892
|
+
Array.from(groups.entries()).map(([entity, groupUnits]) => {
|
|
37893
|
+
const refs = new Set(groupUnits.map((unit) => unit.ref));
|
|
37894
|
+
const childrenByParent = /* @__PURE__ */ new Map();
|
|
37895
|
+
const roots = [];
|
|
37896
|
+
for (const unit of groupUnits) {
|
|
37897
|
+
if (unit.parentRef && refs.has(unit.parentRef)) {
|
|
37898
|
+
const siblings = childrenByParent.get(unit.parentRef);
|
|
37899
|
+
if (siblings) siblings.push(unit);
|
|
37900
|
+
else childrenByParent.set(unit.parentRef, [unit]);
|
|
37901
|
+
} else {
|
|
37902
|
+
roots.push(unit);
|
|
37903
|
+
}
|
|
37904
|
+
}
|
|
37905
|
+
const label = entityDisplay[entity]?.plural ?? entity;
|
|
37906
|
+
return /* @__PURE__ */ jsxs(Box, { border: true, className: "rounded-md border-border bg-card p-3", children: [
|
|
37907
|
+
/* @__PURE__ */ jsxs(Box, { className: "flex items-center gap-2 pb-2", children: [
|
|
37908
|
+
/* @__PURE__ */ jsx(Typography, { variant: "label", children: label }),
|
|
37909
|
+
/* @__PURE__ */ jsx(Badge, { amount: groupUnits.length })
|
|
37910
|
+
] }),
|
|
37911
|
+
roots.map((unit) => renderUnit(unit, childrenByParent, 0))
|
|
37912
|
+
] }, entity);
|
|
37913
|
+
}),
|
|
37914
|
+
skipped.length > 0 ? /* @__PURE__ */ jsxs(Box, { border: true, className: "rounded-md border-border bg-card p-3", children: [
|
|
37915
|
+
/* @__PURE__ */ jsxs(Box, { className: "flex items-center gap-2 pb-2", children: [
|
|
37916
|
+
/* @__PURE__ */ jsx(Typography, { variant: "label", children: "Skipped" }),
|
|
37917
|
+
/* @__PURE__ */ jsx(Badge, { amount: skipped.length })
|
|
37918
|
+
] }),
|
|
37919
|
+
skipped.map((element) => /* @__PURE__ */ jsxs(Box, { className: "flex items-baseline gap-2 py-1", children: [
|
|
37920
|
+
/* @__PURE__ */ jsx(Typography, { variant: "body2", children: element.ref }),
|
|
37921
|
+
/* @__PURE__ */ jsx(Typography, { variant: "caption", className: "text-muted-foreground", children: element.reason })
|
|
37922
|
+
] }, element.ref))
|
|
37923
|
+
] }) : null,
|
|
37924
|
+
onConfirm || onCancel ? /* @__PURE__ */ jsxs(Box, { className: "flex items-center justify-end gap-2", children: [
|
|
37925
|
+
onCancel ? /* @__PURE__ */ jsx(Button, { variant: "default", label: cancelLabel, onClick: onCancel }) : null,
|
|
37926
|
+
onConfirm ? /* @__PURE__ */ jsx(Button, { variant: "primary", label: confirmLabel, onClick: onConfirm }) : null
|
|
37927
|
+
] }) : null
|
|
37928
|
+
] });
|
|
37929
|
+
};
|
|
37930
|
+
}
|
|
37931
|
+
});
|
|
37932
|
+
var PIPELINE, DEFAULT_LABELS, ImportProgress;
|
|
37933
|
+
var init_ImportProgress = __esm({
|
|
37934
|
+
"components/core/molecules/import/ImportProgress.tsx"() {
|
|
37935
|
+
"use client";
|
|
37936
|
+
init_Box();
|
|
37937
|
+
init_Badge();
|
|
37938
|
+
init_Icon();
|
|
37939
|
+
init_Typography();
|
|
37940
|
+
init_cn();
|
|
37941
|
+
PIPELINE = [
|
|
37942
|
+
"fetching",
|
|
37943
|
+
"mapping",
|
|
37944
|
+
"reviewing",
|
|
37945
|
+
"committing"
|
|
37946
|
+
];
|
|
37947
|
+
DEFAULT_LABELS = {
|
|
37948
|
+
fetching: "Fetching",
|
|
37949
|
+
mapping: "Mapping",
|
|
37950
|
+
reviewing: "Reviewing",
|
|
37951
|
+
committing: "Committing",
|
|
37952
|
+
done: "Done",
|
|
37953
|
+
failed: "Failed"
|
|
37954
|
+
};
|
|
37955
|
+
ImportProgress = ({
|
|
37956
|
+
step,
|
|
37957
|
+
counts,
|
|
37958
|
+
labels,
|
|
37959
|
+
className
|
|
37960
|
+
}) => {
|
|
37961
|
+
const label = (key) => labels?.[key] ?? DEFAULT_LABELS[key];
|
|
37962
|
+
const currentIndex = step === "done" || step === "failed" ? PIPELINE.length : PIPELINE.indexOf(step);
|
|
37963
|
+
return /* @__PURE__ */ jsxs(Box, { className: cn("flex flex-col gap-3", className), children: [
|
|
37964
|
+
/* @__PURE__ */ jsxs(Box, { className: "flex items-center gap-2", children: [
|
|
37965
|
+
PIPELINE.map((key, index) => {
|
|
37966
|
+
const isComplete = index < currentIndex;
|
|
37967
|
+
const isActive = index === currentIndex;
|
|
37968
|
+
return /* @__PURE__ */ jsxs(React74__default.Fragment, { children: [
|
|
37969
|
+
index > 0 ? /* @__PURE__ */ jsx(Box, { className: "h-px w-4 bg-border" }) : null,
|
|
37970
|
+
/* @__PURE__ */ jsxs(Box, { className: "flex items-center gap-1", "data-testid": `import-progress-step-${key}`, children: [
|
|
37971
|
+
/* @__PURE__ */ jsx(
|
|
37972
|
+
Icon,
|
|
37973
|
+
{
|
|
37974
|
+
icon: isComplete ? "check" : isActive ? "loader" : "circle",
|
|
37975
|
+
size: "sm",
|
|
37976
|
+
className: cn(
|
|
37977
|
+
isComplete ? "text-success" : isActive ? "text-primary" : "text-muted-foreground"
|
|
37978
|
+
)
|
|
37979
|
+
}
|
|
37980
|
+
),
|
|
37981
|
+
/* @__PURE__ */ jsx(
|
|
37982
|
+
Typography,
|
|
37983
|
+
{
|
|
37984
|
+
variant: "caption",
|
|
37985
|
+
className: cn(isActive ? "text-foreground" : "text-muted-foreground"),
|
|
37986
|
+
children: label(key)
|
|
37987
|
+
}
|
|
37988
|
+
)
|
|
37989
|
+
] })
|
|
37990
|
+
] }, key);
|
|
37991
|
+
}),
|
|
37992
|
+
step === "done" || step === "failed" ? /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
37993
|
+
/* @__PURE__ */ jsx(Box, { className: "h-px w-4 bg-border" }),
|
|
37994
|
+
/* @__PURE__ */ jsxs(Box, { className: "flex items-center gap-1", "data-testid": `import-progress-step-${step}`, children: [
|
|
37995
|
+
/* @__PURE__ */ jsx(
|
|
37996
|
+
Icon,
|
|
37997
|
+
{
|
|
37998
|
+
icon: step === "done" ? "check" : "x",
|
|
37999
|
+
size: "sm",
|
|
38000
|
+
className: step === "done" ? "text-success" : "text-error"
|
|
38001
|
+
}
|
|
38002
|
+
),
|
|
38003
|
+
/* @__PURE__ */ jsx(
|
|
38004
|
+
Typography,
|
|
38005
|
+
{
|
|
38006
|
+
variant: "caption",
|
|
38007
|
+
className: step === "done" ? "text-success" : "text-error",
|
|
38008
|
+
children: label(step)
|
|
38009
|
+
}
|
|
38010
|
+
)
|
|
38011
|
+
] })
|
|
38012
|
+
] }) : null
|
|
38013
|
+
] }),
|
|
38014
|
+
counts ? /* @__PURE__ */ jsxs(Box, { className: "flex items-center gap-2", children: [
|
|
38015
|
+
counts.staged !== void 0 ? /* @__PURE__ */ jsx(Badge, { label: `Staged ${counts.staged}` }) : null,
|
|
38016
|
+
counts.committed !== void 0 ? /* @__PURE__ */ jsx(Badge, { variant: "success", label: `Committed ${counts.committed}` }) : null,
|
|
38017
|
+
counts.failed !== void 0 ? /* @__PURE__ */ jsx(Badge, { variant: "danger", label: `Failed ${counts.failed}` }) : null
|
|
38018
|
+
] }) : null
|
|
38019
|
+
] });
|
|
38020
|
+
};
|
|
38021
|
+
}
|
|
38022
|
+
});
|
|
38023
|
+
|
|
38024
|
+
// components/core/molecules/import/index.ts
|
|
38025
|
+
var init_import = __esm({
|
|
38026
|
+
"components/core/molecules/import/index.ts"() {
|
|
38027
|
+
init_ImportSourcePicker();
|
|
38028
|
+
init_ImportPreviewTree();
|
|
38029
|
+
init_ImportProgress();
|
|
38030
|
+
}
|
|
38031
|
+
});
|
|
37745
38032
|
var ReflectionBlock;
|
|
37746
38033
|
var init_ReflectionBlock = __esm({
|
|
37747
38034
|
"components/core/molecules/ReflectionBlock.tsx"() {
|
|
@@ -38028,6 +38315,7 @@ var init_molecules2 = __esm({
|
|
|
38028
38315
|
init_SignaturePad();
|
|
38029
38316
|
init_DocumentViewer();
|
|
38030
38317
|
init_GraphCanvas();
|
|
38318
|
+
init_import();
|
|
38031
38319
|
init_ActivationBlock();
|
|
38032
38320
|
init_ReflectionBlock();
|
|
38033
38321
|
init_ConnectionBlock();
|
|
@@ -38514,7 +38802,7 @@ function getBadgeVariant(fieldName, value) {
|
|
|
38514
38802
|
function formatFieldLabel(fieldName) {
|
|
38515
38803
|
return fieldName.replace(/([A-Z])/g, " $1").replace(/^./, (str2) => str2.toUpperCase());
|
|
38516
38804
|
}
|
|
38517
|
-
function
|
|
38805
|
+
function formatFieldValue2(value, fieldName) {
|
|
38518
38806
|
if (typeof value === "number") {
|
|
38519
38807
|
if (fieldName.toLowerCase().includes("progress") || fieldName.toLowerCase().includes("percent")) {
|
|
38520
38808
|
return `${value}%`;
|
|
@@ -38609,7 +38897,7 @@ function renderRichFieldValue(value, fieldName, fieldType) {
|
|
|
38609
38897
|
return str2;
|
|
38610
38898
|
}
|
|
38611
38899
|
default:
|
|
38612
|
-
return
|
|
38900
|
+
return formatFieldValue2(value, fieldName);
|
|
38613
38901
|
}
|
|
38614
38902
|
}
|
|
38615
38903
|
function normalizeFieldDefs(fields) {
|
|
@@ -38720,7 +39008,7 @@ var init_DetailPanel = __esm({
|
|
|
38720
39008
|
const value = getNestedValue(normalizedData, field);
|
|
38721
39009
|
return {
|
|
38722
39010
|
label: labelFor(field),
|
|
38723
|
-
value:
|
|
39011
|
+
value: formatFieldValue2(value, field),
|
|
38724
39012
|
icon: getFieldIcon(field)
|
|
38725
39013
|
};
|
|
38726
39014
|
}
|
|
@@ -44732,6 +45020,9 @@ var init_component_registry_generated = __esm({
|
|
|
44732
45020
|
init_HeroOrganism();
|
|
44733
45021
|
init_HeroSection();
|
|
44734
45022
|
init_Icon();
|
|
45023
|
+
init_ImportPreviewTree();
|
|
45024
|
+
init_ImportProgress();
|
|
45025
|
+
init_ImportSourcePicker();
|
|
44735
45026
|
init_InfiniteScrollSentinel();
|
|
44736
45027
|
init_Input();
|
|
44737
45028
|
init_InputGroup();
|
|
@@ -44995,6 +45286,9 @@ var init_component_registry_generated = __esm({
|
|
|
44995
45286
|
"HeroOrganism": HeroOrganism,
|
|
44996
45287
|
"HeroSection": HeroSection,
|
|
44997
45288
|
"Icon": Icon,
|
|
45289
|
+
"ImportPreviewTree": ImportPreviewTree,
|
|
45290
|
+
"ImportProgress": ImportProgress,
|
|
45291
|
+
"ImportSourcePicker": ImportSourcePicker,
|
|
44998
45292
|
"InfiniteScrollSentinel": InfiniteScrollSentinel,
|
|
44999
45293
|
"Input": Input,
|
|
45000
45294
|
"InputGroup": InputGroup,
|
|
@@ -48558,4 +48852,4 @@ function useGitHubBranches(owner, repo, enabled = true) {
|
|
|
48558
48852
|
});
|
|
48559
48853
|
}
|
|
48560
48854
|
|
|
48561
|
-
export { ALL_PRESETS, ALMADAR_DND_MIME, AR_BOOK_FIELDS, AboutPageTemplate, Accordion, Card2 as ActionCard, ActionPalette, ActionTile, ActivationBlock, Alert, AlgorithmCanvas, AnimatedCounter, AnimatedGraphic, AnimatedReveal, ArticleSection, Aside, AssetPicker, AtlasImage, AtlasPanel, AuthLayout, Avatar, Badge, BehaviorView, BiologyCanvas, BloomQuizBlock, BookChapterView, BookCoverPage, BookNavBar, BookTableOfContents, BookViewer, Box, BranchingLogicBuilder, Breadcrumb, Button, ButtonGroup, CTABanner, CalendarGrid, Canvas, Canvas2D, Card, CardBody, CardContent, CardFooter, CardGrid, CardHeader, CardTitle, Carousel, CaseStudyCard, CaseStudyOrganism, Center, Chart, ChartLegend, ChatBar, Checkbox, ChemistryCanvas, ChoiceButton, Coachmark, CodeBlock, CodeRunnerPanel, CollapsibleSection, CommunityLinks, ConditionalWrapper, ConfettiEffect, ConfirmDialog, ConnectionBlock, Container, ContentRenderer, ContentSection, ControlButton, ControlGrid, CounterTemplate, DEFAULT_LIKERT_OPTIONS, DEFAULT_MATRIX_COLUMNS, DEFAULT_SLOTS, DIAMOND_TOP_Y, DashboardGrid, DashboardLayout, DataGrid, DataList, DataTable, DateRangePicker, DateRangeSelector, DayCell, DetailPanel, Dialog, DialogueBubble, Divider, DocBreadcrumb, DocPagination, DocSearch, DocSidebar, DocTOC, DocumentViewer, StateMachineView as DomStateMachineVisualizer, Drawer, DrawerSlot, ELEMENT_SELECTED_EVENT, EdgeDecoration, EditorCheckbox, EditorSelect, EditorSlider, EditorTextInput, EditorToolbar, EmptyState, EntityDisplayEvents, ErrorBoundary, ErrorState, FEATURE_COLORS, FEATURE_TYPES, FLOOR_HEIGHT, FeatureCard, FeatureDetailPageTemplate, FeatureGrid, FeatureGridOrganism, FileTree, FilterGroup, FilterPill, Flex, FlipCard, FlipContainer, FloatingActionButton, Form, FormActions, FormField, FormLayout, FormSection, FormSectionHeader, GameAudioToggle, GameHud, GameIcon, GameMenu, GameShell, GenericAppTemplate, GeometricPattern, GradientDivider, GraphCanvas, GraphView, Grid, GridPicker, HStack, Header, HealthBar, HeroOrganism, HeroSection, I18nProvider, IDENTITY_BOOK_FIELDS, Icon, IconPicker, InfiniteScrollSentinel, Input, InputGroup, InstallBox, JazariStateMachine, JsonTreeEditor, Label, LandingPageTemplate, LawReferenceTooltip, LearningCanvas, Lightbox, LikertScale, LineChart2 as LineChart, List3 as List, LoadingState, MapView, MarkdownContent, MarketingFooter, MarketingStatCard, MasterDetail, MasterDetailLayout, MathCanvas, MatrixQuestion, MediaGallery, Menu, Meter, Modal, ModalSlot, ModuleCard, Navigation, NodeSlotEditor, NotifyListener, NumberStepper, OnboardingSpotlight, OptionConstraintGroup, StateMachineView as OrbitalStateMachineView, OrbitalVisualization, Overlay, PageHeader, PageTransition, Pagination, PatternTile, PhysicsCanvas, Popover, PositionedCanvas, Presence, PricingCard, PricingGrid, PricingOrganism, PricingPageTemplate, ProgressBar, ProgressDots, PropertyInspector, PullQuote, PullToRefresh, QrScanner, QuizBlock, Radio, RangeSlider, ReflectionBlock, RelationSelect, RepeatableFormSection, ReplyTree, RichBlockEditor, RuntimeDebugger, SHEET_COLUMNS, SPRITE_SHEET_LAYOUT, ScaledDiagram, ScoreDisplay, SearchInput, Section, SectionHeader, SegmentRenderer, Select, SequenceBar, ServiceCatalog, SharedEntityStoreContext, ShowcaseCard, ShowcaseOrganism, SidePanel, Sidebar, SignaturePad, SimpleGrid, Skeleton, SlotContentRenderer, SocialProof, SortableList, Spacer, Sparkline, Spinner, Split, SplitPane, SplitSection, Stack, StarRating, StatBadge, StatCard, StatDisplay, StateGraph, StateJsonView, StateMachineView, StateNode2 as StateNode, StatsGrid, StatsOrganism, StatusBar, StatusDot, StepFlow, StepFlowOrganism, SubagentTracePanel, SvgBranch, SvgConnection, SvgFlow, SvgGrid, SvgLobe, SvgMesh, SvgMorph, SvgNode, SvgPulse, SvgRing, SvgShield, SvgStack, SwipeableRow, Switch, TERRAIN_COLORS, TILE_HEIGHT, TILE_WIDTH, TabbedContainer, TableView, Tabs, TagCloud, TagInput, TeamCard, TeamOrganism, TerrainPalette, TextHighlight, Textarea, ThemeToggle, TimeSlotCell, Timeline, TimerDisplay, Toast, ToastSlot, Tooltip, TraitFrame, TraitSlot, TraitStateViewer, TransitionArrow, TrendIndicator, TypewriterText, Typography, UISlotComponent, UISlotRenderer, UploadDropZone, VStack, VersionDiff, ViolationAlert, VoteStack, WizardContainer, WizardNavigation, WizardProgress, boardEntity, bool, calculateAttackTargets, calculateValidMoves, cn, createInitialGameState, createSharedEntityStore, createTranslate, createUnitAnimationState, getCurrentFrame, getTileDimensions, inferDirection, isoToScreen, makeAsset, makeAssetMap, mapBookData, num, objAvailableActions, objAvailableEvents, objCurrentState, objIcon, objId, objMaxRules, objName, objRules, objStates, parseEditFocus, parseLessonSegments, parseMarkdownWithCodeBlocks, parseQueryBinding, pendulum, projectileMotion, registerCodeLanguageLoader, resolveFieldMap, resolveFrame, resolveSheetDirection, rows, runTickFrame, screenToIso, springOscillator, str, tickAnimationState, toCodeLanguage, transitionAnimation, unitHealth, unitPosition, unitTeam, useAgentChat, useAnchorRect, useAtlasSliceDataUrl, useAuthContext, useCamera, useCanvasGestures, useCompile, useConnectGitHub, useDeepAgentGeneration, useDisconnectGitHub, useDragReorder, useDraggable, useDropZone, useEmitEvent, useEventBus, useEventListener, useExtensions, useFileEditor, useFileSystem, useGameAudio, useGitHubBranches, useGitHubRepo, useGitHubRepos, useGitHubStatus, useImageCache, useInfiniteScroll, useLongPress, useOrbitalHistory, usePresence, usePreview, usePullToRefresh, useQuerySingleton, useRenderInterpolation, useSharedEntitySnapshot, useSharedEntityStore, useSharedEntityStoreContext, useSwipeGesture, useTapReveal, useTraitListens, useTranslate115 as useTranslate, useUIEvents, useUISlotManager, useUnitSpriteAtlas, useValidation, vec2 };
|
|
48855
|
+
export { ALL_PRESETS, ALMADAR_DND_MIME, AR_BOOK_FIELDS, AboutPageTemplate, Accordion, Card2 as ActionCard, ActionPalette, ActionTile, ActivationBlock, Alert, AlgorithmCanvas, AnimatedCounter, AnimatedGraphic, AnimatedReveal, ArticleSection, Aside, AssetPicker, AtlasImage, AtlasPanel, AuthLayout, Avatar, Badge, BehaviorView, BiologyCanvas, BloomQuizBlock, BookChapterView, BookCoverPage, BookNavBar, BookTableOfContents, BookViewer, Box, BranchingLogicBuilder, Breadcrumb, Button, ButtonGroup, CTABanner, CalendarGrid, Canvas, Canvas2D, Card, CardBody, CardContent, CardFooter, CardGrid, CardHeader, CardTitle, Carousel, CaseStudyCard, CaseStudyOrganism, Center, Chart, ChartLegend, ChatBar, Checkbox, ChemistryCanvas, ChoiceButton, Coachmark, CodeBlock, CodeRunnerPanel, CollapsibleSection, CommunityLinks, ConditionalWrapper, ConfettiEffect, ConfirmDialog, ConnectionBlock, Container, ContentRenderer, ContentSection, ControlButton, ControlGrid, CounterTemplate, DEFAULT_LIKERT_OPTIONS, DEFAULT_MATRIX_COLUMNS, DEFAULT_SLOTS, DIAMOND_TOP_Y, DashboardGrid, DashboardLayout, DataGrid, DataList, DataTable, DateRangePicker, DateRangeSelector, DayCell, DetailPanel, Dialog, DialogueBubble, Divider, DocBreadcrumb, DocPagination, DocSearch, DocSidebar, DocTOC, DocumentViewer, StateMachineView as DomStateMachineVisualizer, Drawer, DrawerSlot, ELEMENT_SELECTED_EVENT, EdgeDecoration, EditorCheckbox, EditorSelect, EditorSlider, EditorTextInput, EditorToolbar, EmptyState, EntityDisplayEvents, ErrorBoundary, ErrorState, FEATURE_COLORS, FEATURE_TYPES, FLOOR_HEIGHT, FeatureCard, FeatureDetailPageTemplate, FeatureGrid, FeatureGridOrganism, FileTree, FilterGroup, FilterPill, Flex, FlipCard, FlipContainer, FloatingActionButton, Form, FormActions, FormField, FormLayout, FormSection, FormSectionHeader, GameAudioToggle, GameHud, GameIcon, GameMenu, GameShell, GenericAppTemplate, GeometricPattern, GradientDivider, GraphCanvas, GraphView, Grid, GridPicker, HStack, Header, HealthBar, HeroOrganism, HeroSection, I18nProvider, IDENTITY_BOOK_FIELDS, Icon, IconPicker, ImportPreviewTree, ImportProgress, ImportSourcePicker, InfiniteScrollSentinel, Input, InputGroup, InstallBox, JazariStateMachine, JsonTreeEditor, Label, LandingPageTemplate, LawReferenceTooltip, LearningCanvas, Lightbox, LikertScale, LineChart2 as LineChart, List3 as List, LoadingState, MapView, MarkdownContent, MarketingFooter, MarketingStatCard, MasterDetail, MasterDetailLayout, MathCanvas, MatrixQuestion, MediaGallery, Menu, Meter, Modal, ModalSlot, ModuleCard, Navigation, NodeSlotEditor, NotifyListener, NumberStepper, OnboardingSpotlight, OptionConstraintGroup, StateMachineView as OrbitalStateMachineView, OrbitalVisualization, Overlay, PageHeader, PageTransition, Pagination, PatternTile, PhysicsCanvas, Popover, PositionedCanvas, Presence, PricingCard, PricingGrid, PricingOrganism, PricingPageTemplate, ProgressBar, ProgressDots, PropertyInspector, PullQuote, PullToRefresh, QrScanner, QuizBlock, Radio, RangeSlider, ReflectionBlock, RelationSelect, RepeatableFormSection, ReplyTree, RichBlockEditor, RuntimeDebugger, SHEET_COLUMNS, SPRITE_SHEET_LAYOUT, ScaledDiagram, ScoreDisplay, SearchInput, Section, SectionHeader, SegmentRenderer, Select, SequenceBar, ServiceCatalog, SharedEntityStoreContext, ShowcaseCard, ShowcaseOrganism, SidePanel, Sidebar, SignaturePad, SimpleGrid, Skeleton, SlotContentRenderer, SocialProof, SortableList, Spacer, Sparkline, Spinner, Split, SplitPane, SplitSection, Stack, StarRating, StatBadge, StatCard, StatDisplay, StateGraph, StateJsonView, StateMachineView, StateNode2 as StateNode, StatsGrid, StatsOrganism, StatusBar, StatusDot, StepFlow, StepFlowOrganism, SubagentTracePanel, SvgBranch, SvgConnection, SvgFlow, SvgGrid, SvgLobe, SvgMesh, SvgMorph, SvgNode, SvgPulse, SvgRing, SvgShield, SvgStack, SwipeableRow, Switch, TERRAIN_COLORS, TILE_HEIGHT, TILE_WIDTH, TabbedContainer, TableView, Tabs, TagCloud, TagInput, TeamCard, TeamOrganism, TerrainPalette, TextHighlight, Textarea, ThemeToggle, TimeSlotCell, Timeline, TimerDisplay, Toast, ToastSlot, Tooltip, TraitFrame, TraitSlot, TraitStateViewer, TransitionArrow, TrendIndicator, TypewriterText, Typography, UISlotComponent, UISlotRenderer, UploadDropZone, VStack, VersionDiff, ViolationAlert, VoteStack, WizardContainer, WizardNavigation, WizardProgress, boardEntity, bool, calculateAttackTargets, calculateValidMoves, cn, createInitialGameState, createSharedEntityStore, createTranslate, createUnitAnimationState, getCurrentFrame, getTileDimensions, inferDirection, isoToScreen, makeAsset, makeAssetMap, mapBookData, num, objAvailableActions, objAvailableEvents, objCurrentState, objIcon, objId, objMaxRules, objName, objRules, objStates, parseEditFocus, parseLessonSegments, parseMarkdownWithCodeBlocks, parseQueryBinding, pendulum, projectileMotion, registerCodeLanguageLoader, resolveFieldMap, resolveFrame, resolveSheetDirection, rows, runTickFrame, screenToIso, springOscillator, str, tickAnimationState, toCodeLanguage, transitionAnimation, unitHealth, unitPosition, unitTeam, useAgentChat, useAnchorRect, useAtlasSliceDataUrl, useAuthContext, useCamera, useCanvasGestures, useCompile, useConnectGitHub, useDeepAgentGeneration, useDisconnectGitHub, useDragReorder, useDraggable, useDropZone, useEmitEvent, useEventBus, useEventListener, useExtensions, useFileEditor, useFileSystem, useGameAudio, useGitHubBranches, useGitHubRepo, useGitHubRepos, useGitHubStatus, useImageCache, useInfiniteScroll, useLongPress, useOrbitalHistory, usePresence, usePreview, usePullToRefresh, useQuerySingleton, useRenderInterpolation, useSharedEntitySnapshot, useSharedEntityStore, useSharedEntityStoreContext, useSwipeGesture, useTapReveal, useTraitListens, useTranslate115 as useTranslate, useUIEvents, useUISlotManager, useUnitSpriteAtlas, useValidation, vec2 };
|