@almadar/ui 2.14.0 → 2.15.1

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.
Files changed (407) hide show
  1. package/dist/{chunk-M7MOIE46.js → chunk-2KQPOTRM.js} +1 -1
  2. package/dist/{chunk-SKWPSQHQ.js → chunk-FP3PNF7I.js} +22 -10
  3. package/dist/components/atoms/AnimatedCounter.d.ts +20 -0
  4. package/dist/components/atoms/Avatar.d.ts +58 -0
  5. package/dist/components/atoms/Badge.d.ts +14 -0
  6. package/dist/components/atoms/Box.d.ts +57 -0
  7. package/dist/components/atoms/Button.d.ts +24 -0
  8. package/dist/components/atoms/Card.d.ts +18 -0
  9. package/dist/components/atoms/Center.d.ts +33 -0
  10. package/dist/components/atoms/Checkbox.d.ts +9 -0
  11. package/dist/components/atoms/ConditionalWrapper.d.ts +68 -0
  12. package/dist/components/atoms/ConfettiEffect.d.ts +19 -0
  13. package/dist/components/atoms/DayCell.d.ts +21 -0
  14. package/dist/components/atoms/Divider.d.ts +29 -0
  15. package/dist/components/atoms/FlipContainer.d.ts +21 -0
  16. package/dist/components/atoms/Icon.d.ts +39 -0
  17. package/dist/components/atoms/InfiniteScrollSentinel.d.ts +23 -0
  18. package/dist/components/atoms/Input.d.ts +26 -0
  19. package/dist/components/atoms/Label.d.ts +5 -0
  20. package/dist/components/atoms/LawReferenceTooltip.d.ts +48 -0
  21. package/dist/components/atoms/Overlay.d.ts +16 -0
  22. package/dist/components/atoms/ProgressBar.d.ts +63 -0
  23. package/dist/components/atoms/Radio.d.ts +26 -0
  24. package/dist/components/atoms/RangeSlider.d.ts +31 -0
  25. package/dist/components/atoms/Select.d.ts +12 -0
  26. package/dist/components/atoms/Spacer.d.ts +25 -0
  27. package/dist/components/atoms/Spinner.d.ts +6 -0
  28. package/dist/components/atoms/Stack.d.ts +66 -0
  29. package/dist/components/atoms/StatusDot.d.ts +14 -0
  30. package/dist/components/atoms/Switch.d.ts +12 -0
  31. package/dist/components/atoms/TextHighlight.d.ts +53 -0
  32. package/dist/components/atoms/Textarea.d.ts +5 -0
  33. package/dist/components/atoms/ThemeSelector.d.ts +21 -0
  34. package/dist/components/atoms/ThemeToggle.d.ts +33 -0
  35. package/dist/components/atoms/TimeSlotCell.d.ts +23 -0
  36. package/dist/components/atoms/TrendIndicator.d.ts +18 -0
  37. package/dist/components/atoms/TypewriterText.d.ts +20 -0
  38. package/dist/components/atoms/Typography.d.ts +57 -0
  39. package/dist/components/atoms/game/ActionButton.d.ts +25 -0
  40. package/dist/components/atoms/game/ChoiceButton.d.ts +18 -0
  41. package/dist/components/atoms/game/ComboCounter.d.ts +16 -0
  42. package/dist/components/atoms/game/ControlButton.d.ts +31 -0
  43. package/dist/components/atoms/game/DamageNumber.d.ts +14 -0
  44. package/dist/components/atoms/game/DialogueBubble.d.ts +16 -0
  45. package/dist/components/atoms/game/HealthBar.d.ts +18 -0
  46. package/dist/components/atoms/game/ItemSlot.d.ts +25 -0
  47. package/dist/components/atoms/game/MiniMap.d.ts +36 -0
  48. package/dist/components/atoms/game/ResourceCounter.d.ts +21 -0
  49. package/dist/components/atoms/game/ScoreDisplay.d.ts +21 -0
  50. package/dist/components/atoms/game/Sprite.d.ts +63 -0
  51. package/dist/components/atoms/game/StateIndicator.d.ts +31 -0
  52. package/dist/components/atoms/game/StatusEffect.d.ts +21 -0
  53. package/dist/components/atoms/game/TimerDisplay.d.ts +18 -0
  54. package/dist/components/atoms/game/TurnIndicator.d.ts +18 -0
  55. package/dist/components/atoms/game/WaypointMarker.d.ts +19 -0
  56. package/dist/components/atoms/game/XPBar.d.ts +20 -0
  57. package/dist/components/atoms/game/index.d.ts +25 -0
  58. package/dist/components/atoms/index.d.ts +37 -0
  59. package/dist/components/index.d.ts +6 -0
  60. package/dist/components/index.js +3 -3
  61. package/dist/components/molecules/Accordion.d.ts +67 -0
  62. package/dist/components/molecules/Alert.d.ts +24 -0
  63. package/dist/components/molecules/Breadcrumb.d.ts +55 -0
  64. package/dist/components/molecules/ButtonGroup.d.ts +67 -0
  65. package/dist/components/molecules/CalendarGrid.d.ts +43 -0
  66. package/dist/components/molecules/Card.d.ts +56 -0
  67. package/dist/components/molecules/Carousel.d.ts +31 -0
  68. package/dist/components/molecules/ChartLegend.d.ts +20 -0
  69. package/dist/components/molecules/Container.d.ts +30 -0
  70. package/dist/components/molecules/DataGrid.d.ts +75 -0
  71. package/dist/components/molecules/DataList.d.ts +95 -0
  72. package/dist/components/molecules/DateRangeSelector.d.ts +22 -0
  73. package/dist/components/molecules/Drawer.d.ts +46 -0
  74. package/dist/components/molecules/EmptyState.d.ts +25 -0
  75. package/dist/components/molecules/ErrorBoundary.d.ts +55 -0
  76. package/dist/components/molecules/ErrorState.d.ts +13 -0
  77. package/dist/components/molecules/FilterGroup.d.ts +54 -0
  78. package/dist/components/molecules/Flex.d.ts +43 -0
  79. package/dist/components/molecules/FlipCard.d.ts +25 -0
  80. package/dist/components/molecules/FloatingActionButton.d.ts +69 -0
  81. package/dist/components/molecules/FormField.d.ts +16 -0
  82. package/dist/components/molecules/FormSectionHeader.d.ts +30 -0
  83. package/dist/components/molecules/GraphView.d.ts +45 -0
  84. package/dist/components/molecules/Grid.d.ts +54 -0
  85. package/dist/components/molecules/InputGroup.d.ts +24 -0
  86. package/dist/components/molecules/Lightbox.d.ts +25 -0
  87. package/dist/components/molecules/LineChart.d.ts +33 -0
  88. package/dist/components/molecules/LoadingState.d.ts +7 -0
  89. package/dist/components/molecules/MapView.d.ts +40 -0
  90. package/dist/components/molecules/Menu.d.ts +40 -0
  91. package/dist/components/molecules/Meter.d.ts +51 -0
  92. package/dist/components/molecules/Modal.d.ts +28 -0
  93. package/dist/components/molecules/NumberStepper.d.ts +27 -0
  94. package/dist/components/molecules/Pagination.d.ts +66 -0
  95. package/dist/components/molecules/Popover.d.ts +39 -0
  96. package/dist/components/molecules/ProgressDots.d.ts +24 -0
  97. package/dist/components/molecules/PullToRefresh.d.ts +21 -0
  98. package/dist/components/molecules/QuizBlock.d.ts +20 -0
  99. package/dist/components/molecules/RelationSelect.d.ts +48 -0
  100. package/dist/components/molecules/RepeatableFormSection.d.ts +58 -0
  101. package/dist/components/molecules/ScaledDiagram.d.ts +20 -0
  102. package/dist/components/molecules/SearchInput.d.ts +60 -0
  103. package/dist/components/molecules/SidePanel.d.ts +47 -0
  104. package/dist/components/molecules/SimpleGrid.d.ts +27 -0
  105. package/dist/components/molecules/Skeleton.d.ts +35 -0
  106. package/dist/components/molecules/SortableList.d.ts +17 -0
  107. package/dist/components/molecules/StarRating.d.ts +26 -0
  108. package/dist/components/molecules/StatDisplay.d.ts +37 -0
  109. package/dist/components/molecules/SwipeableRow.d.ts +24 -0
  110. package/dist/components/molecules/Tabs.d.ts +45 -0
  111. package/dist/components/molecules/Toast.d.ts +35 -0
  112. package/dist/components/molecules/Tooltip.d.ts +25 -0
  113. package/dist/components/molecules/UploadDropZone.d.ts +26 -0
  114. package/dist/components/molecules/ViolationAlert.d.ts +49 -0
  115. package/dist/components/molecules/WizardNavigation.d.ts +51 -0
  116. package/dist/components/molecules/WizardProgress.d.ts +42 -0
  117. package/dist/components/molecules/game/ActionButtons.d.ts +34 -0
  118. package/dist/components/molecules/game/CombatLog.d.ts +30 -0
  119. package/dist/components/molecules/game/CraftingRecipe.d.ts +33 -0
  120. package/dist/components/molecules/game/DPad.d.ts +22 -0
  121. package/dist/components/molecules/game/DialogueBox.d.ts +78 -0
  122. package/dist/components/molecules/game/EnemyPlate.d.ts +27 -0
  123. package/dist/components/molecules/game/GameCanvas2D.d.ts +18 -0
  124. package/dist/components/molecules/game/GameHud.d.ts +49 -0
  125. package/dist/components/molecules/game/GameMenu.d.ts +43 -0
  126. package/dist/components/molecules/game/GameOverScreen.d.ts +56 -0
  127. package/dist/components/molecules/game/HealthPanel.d.ts +27 -0
  128. package/dist/components/molecules/game/InventoryGrid.d.ts +30 -0
  129. package/dist/components/molecules/game/InventoryPanel.d.ts +67 -0
  130. package/dist/components/molecules/game/IsometricCanvas.d.ts +127 -0
  131. package/dist/components/molecules/game/PlatformerCanvas.d.ts +52 -0
  132. package/dist/components/molecules/game/PowerupSlots.d.ts +23 -0
  133. package/dist/components/molecules/game/QuestTracker.d.ts +20 -0
  134. package/dist/components/molecules/game/ResourceBar.d.ts +23 -0
  135. package/dist/components/molecules/game/ScoreBoard.d.ts +18 -0
  136. package/dist/components/molecules/game/StatBadge.d.ts +27 -0
  137. package/dist/components/molecules/game/TurnPanel.d.ts +29 -0
  138. package/dist/components/molecules/game/UnitCommandBar.d.ts +25 -0
  139. package/dist/components/molecules/game/index.d.ts +30 -0
  140. package/dist/components/molecules/index.d.ts +59 -0
  141. package/dist/components/molecules/markdown/CodeBlock.d.ts +25 -0
  142. package/dist/components/molecules/markdown/MarkdownContent.d.ts +26 -0
  143. package/dist/components/molecules/markdown/index.d.ts +2 -0
  144. package/dist/components/organisms/CardGrid.d.ts +80 -0
  145. package/dist/components/organisms/Chart.d.ts +59 -0
  146. package/dist/components/organisms/CodeViewer.d.ts +67 -0
  147. package/dist/components/organisms/ComponentPatterns.d.ts +453 -0
  148. package/dist/components/organisms/ConfirmDialog.d.ts +50 -0
  149. package/dist/components/organisms/ContentRenderer.d.ts +23 -0
  150. package/dist/components/organisms/CustomPattern.d.ts +104 -0
  151. package/dist/components/organisms/DataTable.d.ts +67 -0
  152. package/dist/components/organisms/DetailPanel.d.ts +78 -0
  153. package/dist/components/organisms/DocumentViewer.d.ts +60 -0
  154. package/dist/components/organisms/DrawerSlot.d.ts +39 -0
  155. package/dist/components/organisms/Form.d.ts +206 -0
  156. package/dist/components/organisms/FormSection.d.ts +41 -0
  157. package/dist/components/organisms/GraphCanvas.d.ts +69 -0
  158. package/dist/components/organisms/Header.d.ts +110 -0
  159. package/dist/components/organisms/JazariStateMachine.d.ts +60 -0
  160. package/dist/components/organisms/LayoutPatterns.d.ts +181 -0
  161. package/dist/components/organisms/List.d.ts +78 -0
  162. package/dist/components/organisms/MasterDetail.d.ts +32 -0
  163. package/dist/components/organisms/MediaGallery.d.ts +57 -0
  164. package/dist/components/organisms/Meter.d.ts +58 -0
  165. package/dist/components/organisms/ModalSlot.d.ts +35 -0
  166. package/dist/components/organisms/Navigation.d.ts +68 -0
  167. package/dist/components/organisms/NotifyListener.d.ts +15 -0
  168. package/dist/components/organisms/OrbitalVisualization.d.ts +48 -0
  169. package/dist/components/organisms/PageHeader.d.ts +59 -0
  170. package/dist/components/organisms/Section.d.ts +44 -0
  171. package/dist/components/organisms/Sidebar.d.ts +63 -0
  172. package/dist/components/organisms/SignaturePad.d.ts +44 -0
  173. package/dist/components/organisms/Split.d.ts +42 -0
  174. package/dist/components/organisms/StatCard.d.ts +62 -0
  175. package/dist/components/organisms/StateMachineView.d.ts +36 -0
  176. package/dist/components/organisms/Table.d.ts +99 -0
  177. package/dist/components/organisms/Timeline.d.ts +49 -0
  178. package/dist/components/organisms/ToastSlot.d.ts +38 -0
  179. package/dist/components/organisms/UISlotRenderer.d.ts +112 -0
  180. package/dist/components/organisms/WizardContainer.d.ts +160 -0
  181. package/dist/components/organisms/book/BookChapterView.d.ts +17 -0
  182. package/dist/components/organisms/book/BookCoverPage.d.ts +20 -0
  183. package/dist/components/organisms/book/BookNavBar.d.ts +19 -0
  184. package/dist/components/organisms/book/BookTableOfContents.d.ts +18 -0
  185. package/dist/components/organisms/book/BookViewer.d.ts +28 -0
  186. package/dist/components/organisms/book/index.d.ts +7 -0
  187. package/dist/components/organisms/book/types.d.ts +77 -0
  188. package/dist/components/organisms/component-registry.generated.d.ts +9 -0
  189. package/dist/components/organisms/debug/RuntimeDebugger.d.ts +19 -0
  190. package/dist/components/organisms/debug/hooks/useDebugData.d.ts +25 -0
  191. package/dist/components/organisms/debug/index.d.ts +13 -0
  192. package/dist/components/organisms/debug/tabs/EntitiesTab.d.ts +13 -0
  193. package/dist/components/organisms/debug/tabs/EventDispatcherTab.d.ts +16 -0
  194. package/dist/components/organisms/debug/tabs/EventFlowTab.d.ts +9 -0
  195. package/dist/components/organisms/debug/tabs/GuardsPanel.d.ts +9 -0
  196. package/dist/components/organisms/debug/tabs/ServerBridgeTab.d.ts +9 -0
  197. package/dist/components/organisms/debug/tabs/TicksTab.d.ts +13 -0
  198. package/dist/components/organisms/debug/tabs/TraitsTab.d.ts +13 -0
  199. package/dist/components/organisms/debug/tabs/TransitionTimeline.d.ts +9 -0
  200. package/dist/components/organisms/debug/tabs/VerificationTab.d.ts +10 -0
  201. package/dist/components/organisms/game/BattleBoard.d.ts +175 -0
  202. package/dist/components/organisms/game/CanvasEffect.d.ts +68 -0
  203. package/dist/components/organisms/game/CastleBoard.d.ts +85 -0
  204. package/dist/components/organisms/game/CombatLog.d.ts +2 -0
  205. package/dist/components/organisms/game/DialogueBox.d.ts +2 -0
  206. package/dist/components/organisms/game/GameAudioProvider.d.ts +47 -0
  207. package/dist/components/organisms/game/GameAudioToggle.d.ts +28 -0
  208. package/dist/components/organisms/game/GameCanvas3D.d.ts +181 -0
  209. package/dist/components/organisms/game/GameHud.d.ts +2 -0
  210. package/dist/components/organisms/game/GameMenu.d.ts +2 -0
  211. package/dist/components/organisms/game/GameOverScreen.d.ts +2 -0
  212. package/dist/components/organisms/game/InventoryPanel.d.ts +2 -0
  213. package/dist/components/organisms/game/IsometricCanvas.d.ts +3 -0
  214. package/dist/components/organisms/game/PlatformerCanvas.d.ts +2 -0
  215. package/dist/components/organisms/game/TraitSlot.d.ts +90 -0
  216. package/dist/components/organisms/game/TraitStateViewer.d.ts +53 -0
  217. package/dist/components/organisms/game/UncontrolledBattleBoard.d.ts +26 -0
  218. package/dist/components/organisms/game/WorldMapBoard.d.ts +156 -0
  219. package/dist/components/organisms/game/editor/editorUtils.d.ts +109 -0
  220. package/dist/components/organisms/game/editor/index.d.ts +9 -0
  221. package/dist/components/organisms/game/hooks/useBattleState.d.ts +35 -0
  222. package/dist/components/organisms/game/hooks/useCamera.d.ts +41 -0
  223. package/dist/components/organisms/game/hooks/useGameAudio.d.ts +47 -0
  224. package/dist/components/organisms/game/hooks/useImageCache.d.ts +16 -0
  225. package/dist/components/organisms/game/hooks/usePhysics2D.d.ts +45 -0
  226. package/dist/components/organisms/game/hooks/useSpriteAnimations.d.ts +43 -0
  227. package/dist/components/organisms/game/index.d.ts +52 -0
  228. package/dist/components/organisms/game/managers/PhysicsManager.d.ts +103 -0
  229. package/dist/components/organisms/game/physics-sim/SimulationCanvas.d.ts +20 -0
  230. package/dist/components/organisms/game/physics-sim/SimulationControls.d.ts +28 -0
  231. package/dist/components/organisms/game/physics-sim/SimulationGraph.d.ts +25 -0
  232. package/dist/components/organisms/game/physics-sim/index.d.ts +7 -0
  233. package/dist/components/organisms/game/physics-sim/presets/index.d.ts +4 -0
  234. package/dist/components/organisms/game/physics-sim/presets/mechanics.d.ts +4 -0
  235. package/dist/components/organisms/game/physics-sim/presets/types.d.ts +43 -0
  236. package/dist/components/organisms/game/puzzles/builder/BuilderBoard.d.ts +52 -0
  237. package/dist/components/organisms/game/puzzles/builder/index.d.ts +2 -0
  238. package/dist/components/organisms/game/puzzles/classifier/ClassifierBoard.d.ts +53 -0
  239. package/dist/components/organisms/game/puzzles/classifier/index.d.ts +2 -0
  240. package/dist/components/organisms/game/puzzles/debugger/DebuggerBoard.d.ts +45 -0
  241. package/dist/components/organisms/game/puzzles/debugger/index.d.ts +2 -0
  242. package/dist/components/organisms/game/puzzles/event-handler/EventHandlerBoard.d.ts +55 -0
  243. package/dist/components/organisms/game/puzzles/event-handler/EventLog.d.ts +31 -0
  244. package/dist/components/organisms/game/puzzles/event-handler/ObjectRulePanel.d.ts +45 -0
  245. package/dist/components/organisms/game/puzzles/event-handler/RuleEditor.d.ts +41 -0
  246. package/dist/components/organisms/game/puzzles/event-handler/index.d.ts +8 -0
  247. package/dist/components/organisms/game/puzzles/negotiator/NegotiatorBoard.d.ts +54 -0
  248. package/dist/components/organisms/game/puzzles/negotiator/index.d.ts +2 -0
  249. package/dist/components/organisms/game/puzzles/sequencer/ActionPalette.d.ts +34 -0
  250. package/dist/components/organisms/game/puzzles/sequencer/ActionTile.d.ts +30 -0
  251. package/dist/components/organisms/game/puzzles/sequencer/SequenceBar.d.ts +41 -0
  252. package/dist/components/organisms/game/puzzles/sequencer/SequencerBoard.d.ts +72 -0
  253. package/dist/components/organisms/game/puzzles/sequencer/index.d.ts +8 -0
  254. package/dist/components/organisms/game/puzzles/simulator/SimulatorBoard.d.ts +54 -0
  255. package/dist/components/organisms/game/puzzles/simulator/index.d.ts +2 -0
  256. package/dist/components/organisms/game/puzzles/state-architect/CodeView.d.ts +24 -0
  257. package/dist/components/organisms/game/puzzles/state-architect/StateArchitectBoard.d.ts +76 -0
  258. package/dist/components/organisms/game/puzzles/state-architect/StateNode.d.ts +33 -0
  259. package/dist/components/organisms/game/puzzles/state-architect/TransitionArrow.d.ts +36 -0
  260. package/dist/components/organisms/game/puzzles/state-architect/VariablePanel.d.ts +28 -0
  261. package/dist/components/organisms/game/puzzles/state-architect/index.d.ts +10 -0
  262. package/dist/components/organisms/game/three/Camera3D.d.ts +60 -0
  263. package/dist/components/organisms/game/three/Lighting3D.d.ts +47 -0
  264. package/dist/components/organisms/game/three/Scene3D.d.ts +37 -0
  265. package/dist/components/organisms/game/three/components/Canvas3DErrorBoundary.d.ts +51 -0
  266. package/dist/components/organisms/game/three/components/Canvas3DLoadingState.d.ts +44 -0
  267. package/dist/components/organisms/game/three/components/ModelLoader.d.ts +44 -0
  268. package/dist/components/organisms/game/three/components/PhysicsObject3D.d.ts +74 -0
  269. package/dist/components/organisms/game/three/components/index.d.ts +10 -0
  270. package/dist/components/organisms/game/three/hooks/useAssetLoader.d.ts +58 -0
  271. package/dist/components/organisms/game/three/hooks/useGameCanvas3DEvents.d.ts +79 -0
  272. package/dist/components/organisms/game/three/hooks/useRaycaster.d.ts +86 -0
  273. package/dist/components/organisms/game/three/hooks/useSceneGraph.d.ts +66 -0
  274. package/dist/components/organisms/game/three/hooks/useThree.d.ts +58 -0
  275. package/dist/components/organisms/game/three/index.d.ts +23 -0
  276. package/dist/components/organisms/game/three/loaders/AssetLoader.d.ts +80 -0
  277. package/dist/components/organisms/game/three/renderers/FeatureRenderer.d.ts +44 -0
  278. package/dist/components/organisms/game/three/renderers/FeatureRenderer3D.d.ts +44 -0
  279. package/dist/components/organisms/game/three/renderers/TileRenderer.d.ts +57 -0
  280. package/dist/components/organisms/game/three/renderers/UnitRenderer.d.ts +46 -0
  281. package/dist/components/organisms/game/three/renderers/index.d.ts +11 -0
  282. package/dist/components/organisms/game/three/utils/culling.d.ts +134 -0
  283. package/dist/components/organisms/game/three/utils/grid3D.d.ts +154 -0
  284. package/dist/components/organisms/game/types/effects.d.ts +253 -0
  285. package/dist/components/organisms/game/types/game.d.ts +92 -0
  286. package/dist/components/organisms/game/types/isometric.d.ts +109 -0
  287. package/dist/components/organisms/game/types/spriteAnimation.d.ts +73 -0
  288. package/dist/components/organisms/game/useCanvasEffects.d.ts +26 -0
  289. package/dist/components/organisms/game/utils/canvasEffects.d.ts +50 -0
  290. package/dist/components/organisms/game/utils/combatEffects.d.ts +64 -0
  291. package/dist/components/organisms/game/utils/combatPresets.d.ts +15 -0
  292. package/dist/components/organisms/game/utils/isometric.d.ts +61 -0
  293. package/dist/components/organisms/game/utils/spriteAnimation.d.ts +57 -0
  294. package/dist/components/organisms/game/utils/spriteSheetConstants.d.ts +16 -0
  295. package/dist/components/organisms/index.d.ts +38 -0
  296. package/dist/components/organisms/layout/DashboardGrid.d.ts +35 -0
  297. package/dist/components/organisms/layout/MasterDetail.d.ts +32 -0
  298. package/dist/components/organisms/layout/SplitPane.d.ts +34 -0
  299. package/dist/components/organisms/layout/TabbedContainer.d.ts +42 -0
  300. package/dist/components/organisms/layout/index.d.ts +9 -0
  301. package/dist/components/organisms/types.d.ts +63 -0
  302. package/dist/components/templates/AuthLayout.d.ts +14 -0
  303. package/dist/components/templates/BattleTemplate.d.ts +25 -0
  304. package/dist/components/templates/CastleTemplate.d.ts +23 -0
  305. package/dist/components/templates/CounterTemplate.d.ts +44 -0
  306. package/dist/components/templates/DashboardLayout.d.ts +34 -0
  307. package/dist/components/templates/GameCanvas3DBattleTemplate.d.ts +96 -0
  308. package/dist/components/templates/GameCanvas3DCastleTemplate.d.ts +90 -0
  309. package/dist/components/templates/GameCanvas3DWorldMapTemplate.d.ts +96 -0
  310. package/dist/components/templates/GameShell.d.ts +34 -0
  311. package/dist/components/templates/GameTemplate.d.ts +36 -0
  312. package/dist/components/templates/GenericAppTemplate.d.ts +30 -0
  313. package/dist/components/templates/WorldMapTemplate.d.ts +29 -0
  314. package/dist/components/templates/index.d.ts +10 -0
  315. package/dist/components/templates/types.d.ts +22 -0
  316. package/dist/context/DesignThemeContext.d.ts +21 -0
  317. package/dist/context/ThemeContext.d.ts +104 -0
  318. package/dist/context/UISlotContext.d.ts +75 -0
  319. package/dist/context/UserContext.d.ts +111 -0
  320. package/dist/context/index.d.ts +8 -0
  321. package/dist/hooks/event-bus-types.d.ts +71 -0
  322. package/dist/hooks/index.d.ts +31 -0
  323. package/dist/hooks/useAgentChat.d.ts +104 -0
  324. package/dist/hooks/useAuthContext.d.ts +25 -0
  325. package/dist/hooks/useCompile.d.ts +22 -0
  326. package/dist/hooks/useDeepAgentGeneration.d.ts +46 -0
  327. package/dist/hooks/useDragReorder.d.ts +26 -0
  328. package/dist/hooks/useEntities.d.ts +52 -0
  329. package/dist/hooks/useEntityData.d.ts +155 -0
  330. package/dist/hooks/useEntityMutations.d.ts +80 -0
  331. package/dist/hooks/useEventBus.d.ts +96 -0
  332. package/dist/hooks/useExtensions.d.ts +32 -0
  333. package/dist/hooks/useFileEditor.d.ts +32 -0
  334. package/dist/hooks/useFileSystem.d.ts +40 -0
  335. package/dist/hooks/useGitHub.d.ts +58 -0
  336. package/dist/hooks/useInfiniteScroll.d.ts +13 -0
  337. package/dist/hooks/useLongPress.d.ts +16 -0
  338. package/dist/hooks/useOrbitalHistory.d.ts +39 -0
  339. package/dist/hooks/useOrbitalMutations.d.ts +95 -0
  340. package/dist/hooks/usePinchZoom.d.ts +22 -0
  341. package/dist/hooks/usePreview.d.ts +57 -0
  342. package/dist/hooks/usePullToRefresh.d.ts +25 -0
  343. package/dist/hooks/useQuerySingleton.d.ts +78 -0
  344. package/dist/hooks/useResolvedEntity.d.ts +32 -0
  345. package/dist/hooks/useSwipeGesture.d.ts +26 -0
  346. package/dist/hooks/useTranslate.d.ts +35 -0
  347. package/dist/hooks/useUIEvents.d.ts +35 -0
  348. package/dist/hooks/useUISlots.d.ts +84 -0
  349. package/dist/hooks/useValidation.d.ts +46 -0
  350. package/dist/lib/api-client.d.ts +42 -0
  351. package/dist/lib/cn.d.ts +6 -0
  352. package/dist/lib/debug.d.ts +43 -0
  353. package/dist/lib/debugRegistry.d.ts +29 -0
  354. package/dist/lib/debugUtils.d.ts +27 -0
  355. package/dist/lib/entityDebug.d.ts +38 -0
  356. package/dist/lib/getNestedValue.d.ts +33 -0
  357. package/dist/lib/guardRegistry.d.ts +32 -0
  358. package/dist/lib/index.d.ts +18 -0
  359. package/dist/lib/jazari/index.d.ts +5 -0
  360. package/dist/lib/jazari/layout.d.ts +30 -0
  361. package/dist/lib/jazari/svg-paths.d.ts +61 -0
  362. package/dist/lib/jazari/types.d.ts +91 -0
  363. package/dist/lib/parseContentSegments.d.ts +41 -0
  364. package/dist/lib/tickRegistry.d.ts +40 -0
  365. package/dist/lib/traitRegistry.d.ts +34 -0
  366. package/dist/lib/verificationRegistry.d.ts +138 -0
  367. package/dist/lib/visualizer/browser.d.ts +47 -0
  368. package/dist/lib/visualizer/index.d.ts +143 -0
  369. package/dist/locales/index.d.ts +20 -0
  370. package/dist/providers/EventBusProvider.d.ts +60 -0
  371. package/dist/providers/FetchedDataProvider.d.ts +105 -0
  372. package/dist/providers/OfflineModeProvider.d.ts +79 -0
  373. package/dist/providers/OrbitalProvider.d.ts +101 -0
  374. package/dist/providers/SelectionProvider.d.ts +81 -0
  375. package/dist/providers/VerificationProvider.d.ts +63 -0
  376. package/dist/providers/index.d.ts +17 -0
  377. package/dist/providers/index.js +3 -3
  378. package/dist/renderer/client-effect-executor.d.ts +68 -0
  379. package/dist/renderer/data-resolver.d.ts +68 -0
  380. package/dist/renderer/index.d.ts +28 -0
  381. package/dist/renderer/init.d.ts +14 -0
  382. package/dist/renderer/navigation.d.ts +142 -0
  383. package/dist/renderer/offline-executor.d.ts +238 -0
  384. package/dist/renderer/pattern-resolver.d.ts +91 -0
  385. package/dist/renderer/slot-definitions.d.ts +45 -0
  386. package/dist/renderer/types.d.ts +160 -0
  387. package/dist/renderer/useClientEffects.d.ts +88 -0
  388. package/dist/runtime/EntitySchemaContext.d.ts +40 -0
  389. package/dist/runtime/TraitProvider.d.ts +52 -0
  390. package/dist/runtime/createClientEffectHandlers.d.ts +23 -0
  391. package/dist/runtime/index.d.ts +15 -0
  392. package/dist/runtime/index.js +3 -3
  393. package/dist/runtime/types.d.ts +10 -0
  394. package/dist/runtime/ui/SlotsContext.d.ts +71 -0
  395. package/dist/runtime/useResolvedSchema.d.ts +45 -0
  396. package/dist/runtime/useTraitStateMachine.d.ts +48 -0
  397. package/dist/scripts/generate-design-system.d.ts +29 -0
  398. package/dist/scripts/generate-theme-from-schema.d.ts +10 -0
  399. package/dist/scripts/generate.d.ts +12 -0
  400. package/dist/scripts/suggest-components.d.ts +31 -0
  401. package/dist/scripts/types.d.ts +129 -0
  402. package/dist/stores/entityStore.d.ts +99 -0
  403. package/dist/stores/filtering.d.ts +51 -0
  404. package/dist/stores/index.d.ts +7 -0
  405. package/dist/tsup.config.d.ts +2 -0
  406. package/dist/vitest.config.d.ts +2 -0
  407. package/package.json +2 -2
@@ -0,0 +1,14 @@
1
+ export interface DamageNumberProps {
2
+ /** The damage/heal value to display */
3
+ value: number;
4
+ /** Type of number display */
5
+ type?: 'damage' | 'heal' | 'crit' | 'miss';
6
+ /** Size variant */
7
+ size?: 'sm' | 'md' | 'lg';
8
+ /** Additional CSS classes */
9
+ className?: string;
10
+ }
11
+ export declare function DamageNumber({ value, type, size, className, }: DamageNumberProps): import("react/jsx-runtime").JSX.Element;
12
+ export declare namespace DamageNumber {
13
+ var displayName: string;
14
+ }
@@ -0,0 +1,16 @@
1
+ export interface DialogueBubbleProps {
2
+ /** Speaker name displayed at the top */
3
+ speaker?: string;
4
+ /** Dialogue text content */
5
+ text: string;
6
+ /** URL for the speaker portrait image */
7
+ portrait?: string;
8
+ /** Position of the bubble on screen */
9
+ position?: 'top' | 'bottom';
10
+ /** Additional CSS classes */
11
+ className?: string;
12
+ }
13
+ export declare function DialogueBubble({ speaker, text, portrait, position, className, }: DialogueBubbleProps): import("react/jsx-runtime").JSX.Element;
14
+ export declare namespace DialogueBubble {
15
+ var displayName: string;
16
+ }
@@ -0,0 +1,18 @@
1
+ export interface HealthBarProps {
2
+ /** Current health value */
3
+ current: number;
4
+ /** Maximum health value */
5
+ max: number;
6
+ /** Display format */
7
+ format?: 'hearts' | 'bar' | 'numeric';
8
+ /** Size variant */
9
+ size?: 'sm' | 'md' | 'lg';
10
+ /** Additional CSS classes */
11
+ className?: string;
12
+ /** Animation on change */
13
+ animated?: boolean;
14
+ }
15
+ export declare function HealthBar({ current, max, format, size, className, animated, }: HealthBarProps): import("react/jsx-runtime").JSX.Element;
16
+ export declare namespace HealthBar {
17
+ var displayName: string;
18
+ }
@@ -0,0 +1,25 @@
1
+ import * as React from 'react';
2
+ export interface ItemSlotProps {
3
+ /** Icon component or emoji */
4
+ icon?: React.ReactNode;
5
+ /** Item label */
6
+ label?: string;
7
+ /** Stack quantity */
8
+ quantity?: number;
9
+ /** Rarity tier affecting border color */
10
+ rarity?: 'common' | 'uncommon' | 'rare' | 'epic' | 'legendary';
11
+ /** Whether the slot is empty */
12
+ empty?: boolean;
13
+ /** Size variant */
14
+ size?: 'sm' | 'md' | 'lg';
15
+ /** Whether the slot is selected */
16
+ selected?: boolean;
17
+ /** Click handler */
18
+ onClick?: () => void;
19
+ /** Additional CSS classes */
20
+ className?: string;
21
+ }
22
+ export declare function ItemSlot({ icon, label, quantity, rarity, empty, size, selected, onClick, className, }: ItemSlotProps): import("react/jsx-runtime").JSX.Element;
23
+ export declare namespace ItemSlot {
24
+ var displayName: string;
25
+ }
@@ -0,0 +1,36 @@
1
+ export interface MiniMapProps {
2
+ /** Tile data: each tile renders as a 1px dot at (x,y) with the given color */
3
+ tiles?: {
4
+ x: number;
5
+ y: number;
6
+ color: string;
7
+ }[];
8
+ /** Unit positions: each unit renders as a 2px dot */
9
+ units?: {
10
+ x: number;
11
+ y: number;
12
+ color: string;
13
+ isPlayer?: boolean;
14
+ }[];
15
+ /** Canvas display width in pixels */
16
+ width?: number;
17
+ /** Canvas display height in pixels */
18
+ height?: number;
19
+ /** Logical map width (for coordinate scaling) */
20
+ mapWidth?: number;
21
+ /** Logical map height (for coordinate scaling) */
22
+ mapHeight?: number;
23
+ /** Viewport rectangle outline */
24
+ viewportRect?: {
25
+ x: number;
26
+ y: number;
27
+ w: number;
28
+ h: number;
29
+ };
30
+ /** Additional CSS classes */
31
+ className?: string;
32
+ }
33
+ export declare function MiniMap({ tiles, units, width, height, mapWidth, mapHeight, viewportRect, className, }: MiniMapProps): import("react/jsx-runtime").JSX.Element;
34
+ export declare namespace MiniMap {
35
+ var displayName: string;
36
+ }
@@ -0,0 +1,21 @@
1
+ import * as React from 'react';
2
+ export interface ResourceCounterProps {
3
+ /** Icon component or emoji */
4
+ icon?: React.ReactNode;
5
+ /** Resource label */
6
+ label: string;
7
+ /** Current value */
8
+ value: number;
9
+ /** Maximum value */
10
+ max?: number;
11
+ /** Accent color class (e.g. 'text-yellow-400') */
12
+ color?: string;
13
+ /** Size variant */
14
+ size?: 'sm' | 'md' | 'lg';
15
+ /** Additional CSS classes */
16
+ className?: string;
17
+ }
18
+ export declare function ResourceCounter({ icon, label, value, max, color, size, className, }: ResourceCounterProps): import("react/jsx-runtime").JSX.Element;
19
+ export declare namespace ResourceCounter {
20
+ var displayName: string;
21
+ }
@@ -0,0 +1,21 @@
1
+ import * as React from 'react';
2
+ export interface ScoreDisplayProps {
3
+ /** Current score value */
4
+ value: number;
5
+ /** Label to display before score */
6
+ label?: string;
7
+ /** Icon component or emoji */
8
+ icon?: React.ReactNode;
9
+ /** Size variant */
10
+ size?: 'sm' | 'md' | 'lg' | 'xl';
11
+ /** Additional CSS classes */
12
+ className?: string;
13
+ /** Animation on value change */
14
+ animated?: boolean;
15
+ /** Number formatting locale */
16
+ locale?: string;
17
+ }
18
+ export declare function ScoreDisplay({ value, label, icon, size, className, animated, locale, ...rest }: ScoreDisplayProps & Record<string, unknown>): import("react/jsx-runtime").JSX.Element;
19
+ export declare namespace ScoreDisplay {
20
+ var displayName: string;
21
+ }
@@ -0,0 +1,63 @@
1
+ /**
2
+ * Sprite Component
3
+ *
4
+ * Renders a single frame from a spritesheet with transform support.
5
+ */
6
+ import React from 'react';
7
+ export interface SpriteProps {
8
+ /** Spritesheet image URL */
9
+ spritesheet: string;
10
+ /** Width of each frame in pixels */
11
+ frameWidth: number;
12
+ /** Height of each frame in pixels */
13
+ frameHeight: number;
14
+ /** Frame index to display (0-based, left-to-right, top-to-bottom) */
15
+ frame: number;
16
+ /** X position in pixels */
17
+ x: number;
18
+ /** Y position in pixels */
19
+ y: number;
20
+ /** Scale factor (default: 1) */
21
+ scale?: number;
22
+ /** Flip horizontally */
23
+ flipX?: boolean;
24
+ /** Flip vertically */
25
+ flipY?: boolean;
26
+ /** Rotation in degrees */
27
+ rotation?: number;
28
+ /** Opacity (0-1) */
29
+ opacity?: number;
30
+ /** Z-index for layering */
31
+ zIndex?: number;
32
+ /** Number of columns in spritesheet (for frame calculation) */
33
+ columns?: number;
34
+ /** Optional className */
35
+ className?: string;
36
+ /** Optional onClick handler */
37
+ onClick?: () => void;
38
+ /** Declarative event name emitted on click via useEventBus */
39
+ action?: string;
40
+ }
41
+ /**
42
+ * Sprite component for rendering spritesheet frames
43
+ *
44
+ * @example
45
+ * ```tsx
46
+ * <Sprite
47
+ * spritesheet="/sprites/player.png"
48
+ * frameWidth={32}
49
+ * frameHeight={32}
50
+ * frame={currentFrame}
51
+ * x={player.x}
52
+ * y={player.y}
53
+ * flipX={player.facingLeft}
54
+ * scale={2}
55
+ * />
56
+ * ```
57
+ */
58
+ export declare function Sprite({ spritesheet, frameWidth, frameHeight, frame, x, y, scale, flipX, flipY, rotation, opacity, zIndex, columns, className, onClick, action, }: SpriteProps): React.JSX.Element;
59
+ /**
60
+ * Canvas-based sprite renderer for better performance in game loops
61
+ */
62
+ export declare function drawSprite(ctx: CanvasRenderingContext2D, image: HTMLImageElement, props: Omit<SpriteProps, 'spritesheet' | 'className' | 'onClick'>): void;
63
+ export default Sprite;
@@ -0,0 +1,31 @@
1
+ /**
2
+ * StateIndicator Component
3
+ *
4
+ * Displays a visual indicator for a game entity's current state.
5
+ * Generic — not tied to any specific game. Projects can extend
6
+ * the state styles via the `stateStyles` prop.
7
+ */
8
+ import React from 'react';
9
+ export interface StateStyle {
10
+ icon: string;
11
+ bgClass: string;
12
+ }
13
+ export interface StateIndicatorProps {
14
+ /** The current state name */
15
+ state: string;
16
+ /** Optional label override (defaults to capitalized state name) */
17
+ label?: string;
18
+ /** Size variant */
19
+ size?: 'sm' | 'md' | 'lg';
20
+ /** Whether to show pulse animation on non-idle states */
21
+ animated?: boolean;
22
+ /** Custom state styles to extend/override defaults */
23
+ stateStyles?: Record<string, StateStyle>;
24
+ /** Additional CSS classes */
25
+ className?: string;
26
+ }
27
+ export declare function StateIndicator({ state, label, size, animated, stateStyles, className, }: StateIndicatorProps): React.JSX.Element;
28
+ export declare namespace StateIndicator {
29
+ var displayName: string;
30
+ }
31
+ export default StateIndicator;
@@ -0,0 +1,21 @@
1
+ import * as React from 'react';
2
+ export interface StatusEffectProps {
3
+ /** Icon to display for the effect */
4
+ icon: React.ReactNode;
5
+ /** Label describing the effect */
6
+ label?: string;
7
+ /** Remaining duration in seconds */
8
+ duration?: number;
9
+ /** Number of stacks */
10
+ stacks?: number;
11
+ /** Effect type */
12
+ variant?: 'buff' | 'debuff' | 'neutral';
13
+ /** Size variant */
14
+ size?: 'sm' | 'md' | 'lg';
15
+ /** Additional CSS classes */
16
+ className?: string;
17
+ }
18
+ export declare function StatusEffect({ icon, label, duration, stacks, variant, size, className, }: StatusEffectProps): import("react/jsx-runtime").JSX.Element;
19
+ export declare namespace StatusEffect {
20
+ var displayName: string;
21
+ }
@@ -0,0 +1,18 @@
1
+ export interface TimerDisplayProps {
2
+ /** Time in seconds */
3
+ seconds: number;
4
+ /** Whether the timer is running */
5
+ running?: boolean;
6
+ /** Display format */
7
+ format?: 'mm:ss' | 'ss' | 'countdown';
8
+ /** Size variant */
9
+ size?: 'sm' | 'md' | 'lg';
10
+ /** Additional CSS classes */
11
+ className?: string;
12
+ /** Seconds below which to pulse red */
13
+ lowThreshold?: number;
14
+ }
15
+ export declare function TimerDisplay({ seconds, running, format, size, className, lowThreshold, }: TimerDisplayProps): import("react/jsx-runtime").JSX.Element;
16
+ export declare namespace TimerDisplay {
17
+ var displayName: string;
18
+ }
@@ -0,0 +1,18 @@
1
+ export interface TurnIndicatorProps {
2
+ /** Current turn number */
3
+ currentTurn: number;
4
+ /** Maximum number of turns */
5
+ maxTurns?: number;
6
+ /** Name of the active team */
7
+ activeTeam?: string;
8
+ /** Current phase label */
9
+ phase?: string;
10
+ /** Size variant */
11
+ size?: 'sm' | 'md' | 'lg';
12
+ /** Additional CSS classes */
13
+ className?: string;
14
+ }
15
+ export declare function TurnIndicator({ currentTurn, maxTurns, activeTeam, phase, size, className, }: TurnIndicatorProps): import("react/jsx-runtime").JSX.Element;
16
+ export declare namespace TurnIndicator {
17
+ var displayName: string;
18
+ }
@@ -0,0 +1,19 @@
1
+ import * as React from 'react';
2
+ export interface WaypointMarkerProps {
3
+ /** Label text below the marker */
4
+ label?: string;
5
+ /** Custom icon to render inside the marker */
6
+ icon?: React.ReactNode;
7
+ /** Whether this waypoint is currently active */
8
+ active?: boolean;
9
+ /** Whether this waypoint has been completed */
10
+ completed?: boolean;
11
+ /** Size variant */
12
+ size?: 'sm' | 'md' | 'lg';
13
+ /** Additional CSS classes */
14
+ className?: string;
15
+ }
16
+ export declare function WaypointMarker({ label, icon, active, completed, size, className, }: WaypointMarkerProps): import("react/jsx-runtime").JSX.Element;
17
+ export declare namespace WaypointMarker {
18
+ var displayName: string;
19
+ }
@@ -0,0 +1,20 @@
1
+ export interface XPBarProps {
2
+ /** Current XP value */
3
+ current: number;
4
+ /** XP needed for next level */
5
+ max: number;
6
+ /** Current level */
7
+ level?: number;
8
+ /** Whether to show the XP label */
9
+ showLabel?: boolean;
10
+ /** Size variant */
11
+ size?: 'sm' | 'md' | 'lg';
12
+ /** Animate the fill bar */
13
+ animated?: boolean;
14
+ /** Additional CSS classes */
15
+ className?: string;
16
+ }
17
+ export declare function XPBar({ current, max, level, showLabel, size, animated, className, }: XPBarProps): import("react/jsx-runtime").JSX.Element;
18
+ export declare namespace XPBar {
19
+ var displayName: string;
20
+ }
@@ -0,0 +1,25 @@
1
+ /**
2
+ * Game Atom Components
3
+ *
4
+ * Basic building blocks for game UI.
5
+ *
6
+ * @packageDocumentation
7
+ */
8
+ export { HealthBar, type HealthBarProps } from './HealthBar';
9
+ export { ScoreDisplay, type ScoreDisplayProps } from './ScoreDisplay';
10
+ export { ControlButton, type ControlButtonProps } from './ControlButton';
11
+ export { Sprite, drawSprite, type SpriteProps } from './Sprite';
12
+ export { StateIndicator, type StateIndicatorProps, type StateStyle } from './StateIndicator';
13
+ export { TimerDisplay, type TimerDisplayProps } from './TimerDisplay';
14
+ export { ResourceCounter, type ResourceCounterProps } from './ResourceCounter';
15
+ export { ItemSlot, type ItemSlotProps } from './ItemSlot';
16
+ export { TurnIndicator, type TurnIndicatorProps } from './TurnIndicator';
17
+ export { ComboCounter, type ComboCounterProps } from './ComboCounter';
18
+ export { XPBar, type XPBarProps } from './XPBar';
19
+ export { WaypointMarker, type WaypointMarkerProps } from './WaypointMarker';
20
+ export { StatusEffect, type StatusEffectProps } from './StatusEffect';
21
+ export { DamageNumber, type DamageNumberProps } from './DamageNumber';
22
+ export { DialogueBubble, type DialogueBubbleProps } from './DialogueBubble';
23
+ export { ChoiceButton, type ChoiceButtonProps } from './ChoiceButton';
24
+ export { ActionButton, type ActionButtonProps } from './ActionButton';
25
+ export { MiniMap, type MiniMapProps } from './MiniMap';
@@ -0,0 +1,37 @@
1
+ export { Button, type ButtonProps } from "./Button";
2
+ export { Input, type InputProps } from "./Input";
3
+ export { Label, type LabelProps } from "./Label";
4
+ export { Textarea, type TextareaProps } from "./Textarea";
5
+ export { Select, type SelectProps, type SelectOption } from "./Select";
6
+ export { Checkbox, type CheckboxProps } from "./Checkbox";
7
+ export { Card, CardHeader, CardTitle, CardContent, CardBody, CardFooter, type CardProps, } from "./Card";
8
+ export { Badge, type BadgeProps, type BadgeVariant } from "./Badge";
9
+ export { Spinner, type SpinnerProps } from "./Spinner";
10
+ export { Avatar, type AvatarProps, type AvatarSize, type AvatarStatus, } from "./Avatar";
11
+ export { Box, type BoxProps, type BoxPadding, type BoxMargin, type BoxBg, type BoxRounded, type BoxShadow, } from "./Box";
12
+ export { Center, type CenterProps } from "./Center";
13
+ export { Divider, type DividerProps, type DividerOrientation } from "./Divider";
14
+ export { Icon, type IconProps, type IconSize, type IconAnimation, } from "./Icon";
15
+ export { ProgressBar, type ProgressBarProps, type ProgressBarVariant, type ProgressBarColor, } from "./ProgressBar";
16
+ export { Radio, type RadioProps } from "./Radio";
17
+ export { Switch, type SwitchProps } from "./Switch";
18
+ export { Spacer, type SpacerProps, type SpacerSize } from "./Spacer";
19
+ export { Stack, VStack, HStack, type StackProps, type VStackProps, type HStackProps, type StackDirection, type StackGap, type StackAlign, type StackJustify, } from "./Stack";
20
+ export { TextHighlight, type TextHighlightProps, type HighlightType, } from "./TextHighlight";
21
+ export { Typography, Heading, Text, type TypographyProps, type TypographyVariant, type HeadingProps, type TextProps, } from "./Typography";
22
+ export { ThemeToggle, type ThemeToggleProps } from "./ThemeToggle";
23
+ export { ThemeSelector } from "./ThemeSelector";
24
+ export { Overlay, type OverlayProps } from "./Overlay";
25
+ export { FlipContainer, type FlipContainerProps } from "./FlipContainer";
26
+ export { ConditionalWrapper, type ConditionalWrapperProps, type ConditionalContext, } from "./ConditionalWrapper";
27
+ export { LawReferenceTooltip, type LawReferenceTooltipProps, type LawReference, } from "./LawReferenceTooltip";
28
+ export { DayCell, type DayCellProps } from "./DayCell";
29
+ export { TimeSlotCell, type TimeSlotCellProps } from "./TimeSlotCell";
30
+ export { StatusDot, type StatusDotProps, type StatusDotStatus, type StatusDotSize } from "./StatusDot";
31
+ export { TrendIndicator, type TrendIndicatorProps, type TrendDirection, type TrendIndicatorSize } from "./TrendIndicator";
32
+ export { RangeSlider, type RangeSliderProps, type RangeSliderSize } from "./RangeSlider";
33
+ export { AnimatedCounter, type AnimatedCounterProps } from "./AnimatedCounter";
34
+ export { InfiniteScrollSentinel, type InfiniteScrollSentinelProps } from "./InfiniteScrollSentinel";
35
+ export { ConfettiEffect, type ConfettiEffectProps } from "./ConfettiEffect";
36
+ export { TypewriterText, type TypewriterTextProps } from "./TypewriterText";
37
+ export * from "./game";
@@ -0,0 +1,6 @@
1
+ export * from './atoms';
2
+ export * from './molecules';
3
+ export * from './organisms';
4
+ export * from './templates';
5
+ export { cn } from '../lib/cn';
6
+ export * from '../hooks';
@@ -1,8 +1,8 @@
1
1
  export { ENTITY_EVENTS, useAgentChat, useCompile, useConnectGitHub, useCreateEntity, useDeepAgentGeneration, useDeleteEntity, useDisconnectGitHub, useEntities, useEntitiesByType, useEntity as useEntityById, useEntityMutations, useExtensions, useFileEditor, useFileSystem, useGitHubBranches, useGitHubRepo, useGitHubRepos, useGitHubStatus, useInput, useOrbitalHistory, useOrbitalMutations, usePhysics, usePinchZoom, usePlayer, usePreview, useResolvedEntity, useSelectedEntity, useSendOrbitalEvent, useSingletonEntity, useUIEvents, useUpdateEntity, useValidation } from '../chunk-IRIGCHP4.js';
2
2
  export { clearEntities, getAllEntities, getByType, getEntity, getSingleton, removeEntity, spawnEntity, updateEntity, updateSingleton } from '../chunk-N7MVUW4R.js';
3
3
  import '../chunk-3HJHHULT.js';
4
- import { VStack, HStack, Typography, Button, Icon, Box, Card, DataTable, Badge, Toast } from '../chunk-SKWPSQHQ.js';
5
- export { ALL_PRESETS, AR_BOOK_FIELDS, Accordion, ActionButton, ActionButtons, Card2 as ActionCard, ActionPalette, ActionTile, Alert, AnimatedCounter, AuthLayout, Avatar, Badge, BattleBoard, BattleTemplate, BookChapterView, BookCoverPage, BookNavBar, BookTableOfContents, BookViewer, Box, Breadcrumb, BuilderBoard, Button, ButtonGroup, CalendarGrid, CanvasEffect, Card, CardBody, CardContent, CardFooter, CardGrid, CardHeader, CardTitle, Carousel, CastleBoard, CastleTemplate, Center, Chart, ChartLegend, Checkbox, ChoiceButton, ClassifierBoard, CodeBlock, CodeView, CodeViewer, CombatLog, ComboCounter, ConditionalWrapper, ConfettiEffect, ConfirmDialog, Container, ContentRenderer, ControlButton, CounterTemplate, CraftingRecipe, DIAMOND_TOP_Y, DPad, DamageNumber, DashboardGrid, DashboardLayout, DataGrid, DataList, DataTable, DateRangeSelector, DayCell, DebuggerBoard, DetailPanel, DialogueBox, DialogueBubble, Divider, DocumentViewer, StateMachineView as DomStateMachineVisualizer, Drawer, DrawerSlot, EmptyState, EnemyPlate, EntityDisplayEvents, ErrorBoundary, ErrorState, EventHandlerBoard, EventLog, FEATURE_COLORS, FLOOR_HEIGHT, FilterGroup, Flex, FlipCard, FlipContainer, FloatingActionButton, Form, FormField, FormSectionHeader, GameAudioContext, GameAudioProvider, GameAudioToggle, GameCanvas2D, GameHud, GameMenu, GameOverScreen, GameShell, GameTemplate, GenericAppTemplate, GraphCanvas, GraphView, Grid, HStack, Header, Heading, HealthBar, HealthPanel, IDENTITY_BOOK_FIELDS, Icon, InfiniteScrollSentinel, Input, InputGroup, InventoryGrid, InventoryPanel, IsometricCanvas, ItemSlot, JazariStateMachine, Label, LawReferenceTooltip, Lightbox, LineChart, List, LoadingState, MapView, MarkdownContent, MediaGallery, Menu, Meter, MiniMap, Modal, ModalSlot, Navigation, NegotiatorBoard, NumberStepper, ObjectRulePanel, StateMachineView as OrbitalStateMachineView, OrbitalVisualization, Overlay, PageHeader, Pagination, PlatformerCanvas, Popover, PowerupSlots, ProgressBar, ProgressDots, PullToRefresh, QuestTracker, QuizBlock, Radio, RangeSlider, RelationSelect, RepeatableFormSection, ResourceBar, ResourceCounter, RuleEditor, RuntimeDebugger, ScaledDiagram, ScoreBoard, ScoreDisplay, SearchInput, Section, Select, SequenceBar, SequencerBoard, SidePanel, Sidebar, SignaturePad, SimpleGrid, SimulationCanvas, SimulationControls, SimulationGraph, SimulatorBoard, Skeleton, SlotContentRenderer, SortableList, Spacer, Spinner, Split, SplitPane, Sprite, Stack, StarRating, StatBadge, StatCard, StatDisplay, StateArchitectBoard, StateIndicator, StateMachineView, StateNode, StatusDot, StatusEffect, SwipeableRow, Switch, TILE_HEIGHT, TILE_WIDTH, TabbedContainer, Table, Tabs, Text, TextHighlight, Textarea, ThemeSelector, ThemeToggle, TimeSlotCell, Timeline, TimerDisplay, Toast, ToastSlot, Tooltip, TraitSlot, TraitStateViewer, TransitionArrow, TrendIndicator, TurnIndicator, TurnPanel, TypewriterText, Typography, UISlotComponent, UISlotRenderer, UncontrolledBattleBoard, UnitCommandBar, UploadDropZone, VStack, VariablePanel, ViolationAlert, WaypointMarker, WizardContainer, WizardNavigation, WizardProgress, WorldMapBoard, WorldMapTemplate, XPBar, drawSprite, isoToScreen, mapBookData, pendulum, projectileMotion, resolveFieldMap, screenToIso, springOscillator, useBattleState, useCamera, useGameAudio, useGameAudioContext, useImageCache } from '../chunk-SKWPSQHQ.js';
4
+ import { VStack, HStack, Typography, Button, Icon, Box, Card, DataTable, Badge, Toast } from '../chunk-FP3PNF7I.js';
5
+ export { ALL_PRESETS, AR_BOOK_FIELDS, Accordion, ActionButton, ActionButtons, Card2 as ActionCard, ActionPalette, ActionTile, Alert, AnimatedCounter, AuthLayout, Avatar, Badge, BattleBoard, BattleTemplate, BookChapterView, BookCoverPage, BookNavBar, BookTableOfContents, BookViewer, Box, Breadcrumb, BuilderBoard, Button, ButtonGroup, CalendarGrid, CanvasEffect, Card, CardBody, CardContent, CardFooter, CardGrid, CardHeader, CardTitle, Carousel, CastleBoard, CastleTemplate, Center, Chart, ChartLegend, Checkbox, ChoiceButton, ClassifierBoard, CodeBlock, CodeView, CodeViewer, CombatLog, ComboCounter, ConditionalWrapper, ConfettiEffect, ConfirmDialog, Container, ContentRenderer, ControlButton, CounterTemplate, CraftingRecipe, DIAMOND_TOP_Y, DPad, DamageNumber, DashboardGrid, DashboardLayout, DataGrid, DataList, DataTable, DateRangeSelector, DayCell, DebuggerBoard, DetailPanel, DialogueBox, DialogueBubble, Divider, DocumentViewer, StateMachineView as DomStateMachineVisualizer, Drawer, DrawerSlot, EmptyState, EnemyPlate, EntityDisplayEvents, ErrorBoundary, ErrorState, EventHandlerBoard, EventLog, FEATURE_COLORS, FLOOR_HEIGHT, FilterGroup, Flex, FlipCard, FlipContainer, FloatingActionButton, Form, FormField, FormSectionHeader, GameAudioContext, GameAudioProvider, GameAudioToggle, GameCanvas2D, GameHud, GameMenu, GameOverScreen, GameShell, GameTemplate, GenericAppTemplate, GraphCanvas, GraphView, Grid, HStack, Header, Heading, HealthBar, HealthPanel, IDENTITY_BOOK_FIELDS, Icon, InfiniteScrollSentinel, Input, InputGroup, InventoryGrid, InventoryPanel, IsometricCanvas, ItemSlot, JazariStateMachine, Label, LawReferenceTooltip, Lightbox, LineChart, List, LoadingState, MapView, MarkdownContent, MediaGallery, Menu, Meter, MiniMap, Modal, ModalSlot, Navigation, NegotiatorBoard, NumberStepper, ObjectRulePanel, StateMachineView as OrbitalStateMachineView, OrbitalVisualization, Overlay, PageHeader, Pagination, PlatformerCanvas, Popover, PowerupSlots, ProgressBar, ProgressDots, PullToRefresh, QuestTracker, QuizBlock, Radio, RangeSlider, RelationSelect, RepeatableFormSection, ResourceBar, ResourceCounter, RuleEditor, RuntimeDebugger, ScaledDiagram, ScoreBoard, ScoreDisplay, SearchInput, Section, Select, SequenceBar, SequencerBoard, SidePanel, Sidebar, SignaturePad, SimpleGrid, SimulationCanvas, SimulationControls, SimulationGraph, SimulatorBoard, Skeleton, SlotContentRenderer, SortableList, Spacer, Spinner, Split, SplitPane, Sprite, Stack, StarRating, StatBadge, StatCard, StatDisplay, StateArchitectBoard, StateIndicator, StateMachineView, StateNode, StatusDot, StatusEffect, SwipeableRow, Switch, TILE_HEIGHT, TILE_WIDTH, TabbedContainer, Table, Tabs, Text, TextHighlight, Textarea, ThemeSelector, ThemeToggle, TimeSlotCell, Timeline, TimerDisplay, Toast, ToastSlot, Tooltip, TraitSlot, TraitStateViewer, TransitionArrow, TrendIndicator, TurnIndicator, TurnPanel, TypewriterText, Typography, UISlotComponent, UISlotRenderer, UncontrolledBattleBoard, UnitCommandBar, UploadDropZone, VStack, VariablePanel, ViolationAlert, WaypointMarker, WizardContainer, WizardNavigation, WizardProgress, WorldMapBoard, WorldMapTemplate, XPBar, drawSprite, isoToScreen, mapBookData, pendulum, projectileMotion, resolveFieldMap, screenToIso, springOscillator, useBattleState, useCamera, useGameAudio, useGameAudioContext, useImageCache } from '../chunk-FP3PNF7I.js';
6
6
  import '../chunk-4N3BAPDB.js';
7
7
  import '../chunk-DKQN5FVU.js';
8
8
  import { useTranslate } from '../chunk-QU2X55WH.js';
@@ -10,9 +10,9 @@ export { EntityDataProvider, I18nProvider, createTranslate, entityDataKeys, pars
10
10
  import { useEventBus } from '../chunk-YXZM3WCF.js';
11
11
  export { useEmitEvent, useEventBus, useEventListener } from '../chunk-YXZM3WCF.js';
12
12
  export { DEFAULT_SLOTS, useUISlotManager } from '../chunk-3JGAROCW.js';
13
+ import '../chunk-2XXSUIOK.js';
13
14
  import { cn } from '../chunk-XL7WB2O5.js';
14
15
  export { cn } from '../chunk-XL7WB2O5.js';
15
- import '../chunk-2XXSUIOK.js';
16
16
  import '../chunk-K2D5D3WK.js';
17
17
  import { __publicField } from '../chunk-PKBMQBKP.js';
18
18
  import React, { useRef, useCallback, useEffect, useState } from 'react';
@@ -0,0 +1,67 @@
1
+ /**
2
+ * Accordion Molecule Component
3
+ *
4
+ * A collapsible content component with single or multiple open items.
5
+ * Uses Button, Icon, Typography, and Divider atoms.
6
+ */
7
+ import React from "react";
8
+ export interface AccordionItem {
9
+ /**
10
+ * Item ID (auto-generated from header/title if not provided)
11
+ */
12
+ id?: string;
13
+ /**
14
+ * Item header/title
15
+ */
16
+ header?: React.ReactNode;
17
+ /**
18
+ * Alias for header (pattern compatibility)
19
+ */
20
+ title?: React.ReactNode;
21
+ /**
22
+ * Item content
23
+ */
24
+ content: React.ReactNode;
25
+ /**
26
+ * Disable item
27
+ */
28
+ disabled?: boolean;
29
+ /**
30
+ * Default open state
31
+ */
32
+ defaultOpen?: boolean;
33
+ }
34
+ export interface AccordionProps {
35
+ /**
36
+ * Accordion items
37
+ */
38
+ items: AccordionItem[];
39
+ /**
40
+ * Allow multiple items open at once
41
+ * @default false
42
+ */
43
+ multiple?: boolean;
44
+ /**
45
+ * Default open items (IDs)
46
+ */
47
+ defaultOpenItems?: string[];
48
+ /**
49
+ * Default open items by index (pattern compatibility)
50
+ */
51
+ defaultOpen?: number[];
52
+ /**
53
+ * Controlled open items (IDs)
54
+ */
55
+ openItems?: string[];
56
+ /**
57
+ * Callback when item opens/closes
58
+ */
59
+ onItemToggle?: (itemId: string, isOpen: boolean) => void;
60
+ /**
61
+ * Additional CSS classes
62
+ */
63
+ className?: string;
64
+ /** Declarative toggle event — emits UI:{toggleEvent} with { itemId, isOpen } */
65
+ toggleEvent?: string;
66
+ }
67
+ export declare const Accordion: React.FC<AccordionProps>;
@@ -0,0 +1,24 @@
1
+ /**
2
+ * Alert Molecule Component
3
+ *
4
+ * A component for displaying alert messages with different variants and actions.
5
+ * Uses theme-aware CSS variables for styling.
6
+ */
7
+ import React from "react";
8
+ export type AlertVariant = "info" | "success" | "warning" | "error";
9
+ export interface AlertProps {
10
+ /** Alert content (children or message) */
11
+ children?: React.ReactNode;
12
+ /** Alert message (alias for children) */
13
+ message?: string;
14
+ variant?: AlertVariant;
15
+ title?: string;
16
+ dismissible?: boolean;
17
+ onDismiss?: () => void;
18
+ onClose?: () => void;
19
+ actions?: React.ReactNode;
20
+ className?: string;
21
+ /** Declarative dismiss event — emits UI:{dismissEvent} via eventBus when alert is dismissed */
22
+ dismissEvent?: string;
23
+ }
24
+ export declare const Alert: React.FC<AlertProps>;
@@ -0,0 +1,55 @@
1
+ /**
2
+ * Breadcrumb Molecule Component
3
+ *
4
+ * A breadcrumb navigation component with separators and icons.
5
+ * Uses Button, Icon, and Typography atoms.
6
+ */
7
+ import React from "react";
8
+ import type { LucideIcon } from "lucide-react";
9
+ export interface BreadcrumbItem {
10
+ /**
11
+ * Item label
12
+ */
13
+ label: string;
14
+ /**
15
+ * Item href (if provided, renders as link)
16
+ */
17
+ href?: string;
18
+ /**
19
+ * Item path (alias for href, for schema compatibility)
20
+ */
21
+ path?: string;
22
+ /**
23
+ * Item icon
24
+ */
25
+ icon?: LucideIcon;
26
+ /**
27
+ * Click handler (if href not provided)
28
+ */
29
+ onClick?: () => void;
30
+ /**
31
+ * Is current page
32
+ */
33
+ isCurrent?: boolean;
34
+ /** Event name to emit when clicked (for trait state machine integration) */
35
+ event?: string;
36
+ }
37
+ export interface BreadcrumbProps {
38
+ /**
39
+ * Breadcrumb items
40
+ */
41
+ items: BreadcrumbItem[];
42
+ /**
43
+ * Separator icon
44
+ */
45
+ separator?: LucideIcon;
46
+ /**
47
+ * Maximum items to show (truncates with ellipsis)
48
+ */
49
+ maxItems?: number;
50
+ /**
51
+ * Additional CSS classes
52
+ */
53
+ className?: string;
54
+ }
55
+ export declare const Breadcrumb: React.FC<BreadcrumbProps>;