@middag-io/react 0.2.1 → 0.3.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.
Files changed (265) hide show
  1. package/dist-lib/app/ContractPage.d.ts +17 -0
  2. package/dist-lib/app/ContractPage.d.ts.map +1 -0
  3. package/dist-lib/app/bootstrap.d.ts +6 -0
  4. package/dist-lib/app/bootstrap.d.ts.map +1 -0
  5. package/dist-lib/app/providers/auth.d.ts +41 -0
  6. package/dist-lib/app/providers/auth.d.ts.map +1 -0
  7. package/dist-lib/app/providers/flash.d.ts +14 -0
  8. package/dist-lib/app/providers/flash.d.ts.map +1 -0
  9. package/dist-lib/app/providers/i18n.d.ts +40 -0
  10. package/dist-lib/app/providers/i18n.d.ts.map +1 -0
  11. package/dist-lib/app/providers/progress.d.ts +13 -0
  12. package/dist-lib/app/providers/progress.d.ts.map +1 -0
  13. package/dist-lib/app/providers/scope.d.ts +32 -0
  14. package/dist-lib/app/providers/scope.d.ts.map +1 -0
  15. package/dist-lib/app/register-defaults.d.ts +6 -0
  16. package/dist-lib/app/register-defaults.d.ts.map +1 -0
  17. package/dist-lib/app/registries.d.ts +33 -0
  18. package/dist-lib/app/registries.d.ts.map +1 -0
  19. package/dist-lib/assets/lottie/index.d.ts +36 -0
  20. package/dist-lib/assets/lottie/index.d.ts.map +1 -0
  21. package/dist-lib/base/blocks/ActionGridBlock.d.ts +14 -0
  22. package/dist-lib/base/blocks/ActionGridBlock.d.ts.map +1 -0
  23. package/dist-lib/base/blocks/ActivityTimelineBlock.d.ts +13 -0
  24. package/dist-lib/base/blocks/ActivityTimelineBlock.d.ts.map +1 -0
  25. package/dist-lib/base/blocks/CardGridBlock.d.ts +18 -0
  26. package/dist-lib/base/blocks/CardGridBlock.d.ts.map +1 -0
  27. package/dist-lib/base/blocks/ConditionTreeBlock.d.ts +13 -0
  28. package/dist-lib/base/blocks/ConditionTreeBlock.d.ts.map +1 -0
  29. package/dist-lib/base/blocks/DenseTableBlock.d.ts +13 -0
  30. package/dist-lib/base/blocks/DenseTableBlock.d.ts.map +1 -0
  31. package/dist-lib/base/blocks/DetailPanelBlock.d.ts +13 -0
  32. package/dist-lib/base/blocks/DetailPanelBlock.d.ts.map +1 -0
  33. package/dist-lib/base/blocks/EmptyStateBlock.d.ts +12 -0
  34. package/dist-lib/base/blocks/EmptyStateBlock.d.ts.map +1 -0
  35. package/dist-lib/base/blocks/FlowEditorBlock.d.ts +15 -0
  36. package/dist-lib/base/blocks/FlowEditorBlock.d.ts.map +1 -0
  37. package/dist-lib/base/blocks/FormBuilderBlock.d.ts +17 -0
  38. package/dist-lib/base/blocks/FormBuilderBlock.d.ts.map +1 -0
  39. package/dist-lib/base/blocks/FormPanelBlock.d.ts +13 -0
  40. package/dist-lib/base/blocks/FormPanelBlock.d.ts.map +1 -0
  41. package/dist-lib/base/blocks/LinkListBlock.d.ts +12 -0
  42. package/dist-lib/base/blocks/LinkListBlock.d.ts.map +1 -0
  43. package/dist-lib/base/blocks/MarkdownPanelBlock.d.ts +13 -0
  44. package/dist-lib/base/blocks/MarkdownPanelBlock.d.ts.map +1 -0
  45. package/dist-lib/base/blocks/MetricCardBlock.d.ts +10 -0
  46. package/dist-lib/base/blocks/MetricCardBlock.d.ts.map +1 -0
  47. package/dist-lib/base/blocks/SentenceBuilderBlock.d.ts +15 -0
  48. package/dist-lib/base/blocks/SentenceBuilderBlock.d.ts.map +1 -0
  49. package/dist-lib/base/blocks/StatusStripBlock.d.ts +12 -0
  50. package/dist-lib/base/blocks/StatusStripBlock.d.ts.map +1 -0
  51. package/dist-lib/base/blocks/TabbedPanelBlock.d.ts +15 -0
  52. package/dist-lib/base/blocks/TabbedPanelBlock.d.ts.map +1 -0
  53. package/dist-lib/base/form/FormField.d.ts +38 -0
  54. package/dist-lib/base/form/FormField.d.ts.map +1 -0
  55. package/dist-lib/base/form/fields/CheckboxField.d.ts +19 -0
  56. package/dist-lib/base/form/fields/CheckboxField.d.ts.map +1 -0
  57. package/dist-lib/base/form/fields/EntityPickerField.d.ts +24 -0
  58. package/dist-lib/base/form/fields/EntityPickerField.d.ts.map +1 -0
  59. package/dist-lib/base/form/fields/MultiSelectField.d.ts +24 -0
  60. package/dist-lib/base/form/fields/MultiSelectField.d.ts.map +1 -0
  61. package/dist-lib/base/form/fields/NumberField.d.ts +21 -0
  62. package/dist-lib/base/form/fields/NumberField.d.ts.map +1 -0
  63. package/dist-lib/base/form/fields/PasswordField.d.ts +19 -0
  64. package/dist-lib/base/form/fields/PasswordField.d.ts.map +1 -0
  65. package/dist-lib/base/form/fields/RadioField.d.ts +23 -0
  66. package/dist-lib/base/form/fields/RadioField.d.ts.map +1 -0
  67. package/dist-lib/base/form/fields/SelectField.d.ts +24 -0
  68. package/dist-lib/base/form/fields/SelectField.d.ts.map +1 -0
  69. package/dist-lib/base/form/fields/StaticField.d.ts +12 -0
  70. package/dist-lib/base/form/fields/StaticField.d.ts.map +1 -0
  71. package/dist-lib/base/form/fields/SwitchField.d.ts +19 -0
  72. package/dist-lib/base/form/fields/SwitchField.d.ts.map +1 -0
  73. package/dist-lib/base/form/fields/TextField.d.ts +21 -0
  74. package/dist-lib/base/form/fields/TextField.d.ts.map +1 -0
  75. package/dist-lib/base/form/fields/TextareaField.d.ts +21 -0
  76. package/dist-lib/base/form/fields/TextareaField.d.ts.map +1 -0
  77. package/dist-lib/base/hooks/useIsDark.d.ts +12 -0
  78. package/dist-lib/base/hooks/useIsDark.d.ts.map +1 -0
  79. package/dist-lib/base/hooks/usePolling.d.ts +11 -0
  80. package/dist-lib/base/hooks/usePolling.d.ts.map +1 -0
  81. package/dist-lib/base/hooks/useToast.d.ts +17 -0
  82. package/dist-lib/base/hooks/useToast.d.ts.map +1 -0
  83. package/dist-lib/base/layout/DashboardLayout.d.ts +11 -0
  84. package/dist-lib/base/layout/DashboardLayout.d.ts.map +1 -0
  85. package/dist-lib/base/layout/MasterDetailLayout.d.ts +8 -0
  86. package/dist-lib/base/layout/MasterDetailLayout.d.ts.map +1 -0
  87. package/dist-lib/base/layout/SplitLayout.d.ts +8 -0
  88. package/dist-lib/base/layout/SplitLayout.d.ts.map +1 -0
  89. package/dist-lib/base/layout/StackLayout.d.ts +12 -0
  90. package/dist-lib/base/layout/StackLayout.d.ts.map +1 -0
  91. package/dist-lib/base/layout/WizardLayout.d.ts +12 -0
  92. package/dist-lib/base/layout/WizardLayout.d.ts.map +1 -0
  93. package/dist-lib/base/partials/ActionBar/index.d.ts +28 -0
  94. package/dist-lib/base/partials/ActionBar/index.d.ts.map +1 -0
  95. package/dist-lib/base/partials/ConfirmationDialog/index.d.ts +26 -0
  96. package/dist-lib/base/partials/ConfirmationDialog/index.d.ts.map +1 -0
  97. package/dist-lib/base/partials/DataTable/cell-renderers.d.ts +16 -0
  98. package/dist-lib/base/partials/DataTable/cell-renderers.d.ts.map +1 -0
  99. package/dist-lib/base/partials/DataTable/index.d.ts +12 -0
  100. package/dist-lib/base/partials/DataTable/index.d.ts.map +1 -0
  101. package/dist-lib/base/partials/DataTable/types.d.ts +129 -0
  102. package/dist-lib/base/partials/DataTable/types.d.ts.map +1 -0
  103. package/dist-lib/base/partials/DetailSection/index.d.ts +37 -0
  104. package/dist-lib/base/partials/DetailSection/index.d.ts.map +1 -0
  105. package/dist-lib/base/partials/EmptyPlaceholder/index.d.ts +29 -0
  106. package/dist-lib/base/partials/EmptyPlaceholder/index.d.ts.map +1 -0
  107. package/dist-lib/base/partials/FilterBar/index.d.ts +31 -0
  108. package/dist-lib/base/partials/FilterBar/index.d.ts.map +1 -0
  109. package/dist-lib/base/partials/FormSection/index.d.ts +19 -0
  110. package/dist-lib/base/partials/FormSection/index.d.ts.map +1 -0
  111. package/dist-lib/base/partials/LogViewer/JsonBlock.d.ts +8 -0
  112. package/dist-lib/base/partials/LogViewer/JsonBlock.d.ts.map +1 -0
  113. package/dist-lib/base/partials/LogViewer/LogEntry.d.ts +9 -0
  114. package/dist-lib/base/partials/LogViewer/LogEntry.d.ts.map +1 -0
  115. package/dist-lib/base/partials/LogViewer/LogViewerToolbar.d.ts +16 -0
  116. package/dist-lib/base/partials/LogViewer/LogViewerToolbar.d.ts.map +1 -0
  117. package/dist-lib/base/partials/LogViewer/index.d.ts +14 -0
  118. package/dist-lib/base/partials/LogViewer/index.d.ts.map +1 -0
  119. package/dist-lib/base/partials/LogViewer/types.d.ts +26 -0
  120. package/dist-lib/base/partials/LogViewer/types.d.ts.map +1 -0
  121. package/dist-lib/base/partials/MarkdownContent/index.d.ts +17 -0
  122. package/dist-lib/base/partials/MarkdownContent/index.d.ts.map +1 -0
  123. package/dist-lib/base/partials/StatRow/index.d.ts +12 -0
  124. package/dist-lib/base/partials/StatRow/index.d.ts.map +1 -0
  125. package/dist-lib/base/partials/StatusBar/index.d.ts +21 -0
  126. package/dist-lib/base/partials/StatusBar/index.d.ts.map +1 -0
  127. package/dist-lib/base/partials/StatusIndicator/index.d.ts +16 -0
  128. package/dist-lib/base/partials/StatusIndicator/index.d.ts.map +1 -0
  129. package/dist-lib/base/partials/StepIndicator/index.d.ts +15 -0
  130. package/dist-lib/base/partials/StepIndicator/index.d.ts.map +1 -0
  131. package/dist-lib/base/partials/TimelineList/index.d.ts +32 -0
  132. package/dist-lib/base/partials/TimelineList/index.d.ts.map +1 -0
  133. package/dist-lib/base/shell/AdminShell.d.ts +12 -0
  134. package/dist-lib/base/shell/AdminShell.d.ts.map +1 -0
  135. package/dist-lib/base/shell/ProductShell.d.ts +22 -0
  136. package/dist-lib/base/shell/ProductShell.d.ts.map +1 -0
  137. package/dist-lib/base/shell/partials/AppearanceToggle.d.ts +8 -0
  138. package/dist-lib/base/shell/partials/AppearanceToggle.d.ts.map +1 -0
  139. package/dist-lib/base/shell/partials/CommandPalette.d.ts +24 -0
  140. package/dist-lib/base/shell/partials/CommandPalette.d.ts.map +1 -0
  141. package/dist-lib/base/shell/partials/HelpContext.d.ts +15 -0
  142. package/dist-lib/base/shell/partials/HelpContext.d.ts.map +1 -0
  143. package/dist-lib/base/shell/partials/HelpPanel.d.ts +15 -0
  144. package/dist-lib/base/shell/partials/HelpPanel.d.ts.map +1 -0
  145. package/dist-lib/base/shell/partials/InlineInspector.d.ts +15 -0
  146. package/dist-lib/base/shell/partials/InlineInspector.d.ts.map +1 -0
  147. package/dist-lib/base/shell/partials/InspectorContext.d.ts +58 -0
  148. package/dist-lib/base/shell/partials/InspectorContext.d.ts.map +1 -0
  149. package/dist-lib/base/shell/partials/InspectorPanel.d.ts +29 -0
  150. package/dist-lib/base/shell/partials/InspectorPanel.d.ts.map +1 -0
  151. package/dist-lib/base/shell/partials/NavErrorBoundary.d.ts +23 -0
  152. package/dist-lib/base/shell/partials/NavErrorBoundary.d.ts.map +1 -0
  153. package/dist-lib/base/shell/partials/OverlayScreen.d.ts +17 -0
  154. package/dist-lib/base/shell/partials/OverlayScreen.d.ts.map +1 -0
  155. package/dist-lib/base/shell/partials/PageActionButton.d.ts +17 -0
  156. package/dist-lib/base/shell/partials/PageActionButton.d.ts.map +1 -0
  157. package/dist-lib/base/shell/partials/PageFilterTabs.d.ts +22 -0
  158. package/dist-lib/base/shell/partials/PageFilterTabs.d.ts.map +1 -0
  159. package/dist-lib/base/shell/partials/PageHeader.d.ts +22 -0
  160. package/dist-lib/base/shell/partials/PageHeader.d.ts.map +1 -0
  161. package/dist-lib/base/shell/partials/SidebarNav.d.ts +17 -0
  162. package/dist-lib/base/shell/partials/SidebarNav.d.ts.map +1 -0
  163. package/dist-lib/base/theme/appearance.d.ts +58 -0
  164. package/dist-lib/base/theme/appearance.d.ts.map +1 -0
  165. package/dist-lib/base/theme/host-theme-detector.d.ts +22 -0
  166. package/dist-lib/base/theme/host-theme-detector.d.ts.map +1 -0
  167. package/dist-lib/base/theme/useHostTheme.d.ts +27 -0
  168. package/dist-lib/base/theme/useHostTheme.d.ts.map +1 -0
  169. package/dist-lib/base/utils/clipboard.d.ts +12 -0
  170. package/dist-lib/base/utils/clipboard.d.ts.map +1 -0
  171. package/dist-lib/base/utils/conditions.d.ts +7 -0
  172. package/dist-lib/base/utils/conditions.d.ts.map +1 -0
  173. package/dist-lib/base/utils/icons.d.ts +21 -0
  174. package/dist-lib/base/utils/icons.d.ts.map +1 -0
  175. package/dist-lib/base/utils/interpolate.d.ts +7 -0
  176. package/dist-lib/base/utils/interpolate.d.ts.map +1 -0
  177. package/dist-lib/base/utils/time.d.ts +28 -0
  178. package/dist-lib/base/utils/time.d.ts.map +1 -0
  179. package/dist-lib/components/reui/alert-dialog.d.ts +19 -0
  180. package/dist-lib/components/reui/alert-dialog.d.ts.map +1 -0
  181. package/dist-lib/components/reui/alert.d.ts +10 -0
  182. package/dist-lib/components/reui/alert.d.ts.map +1 -0
  183. package/dist-lib/components/reui/badge.d.ts +12 -0
  184. package/dist-lib/components/reui/badge.d.ts.map +1 -0
  185. package/dist-lib/components/reui/button.d.ts +11 -0
  186. package/dist-lib/components/reui/button.d.ts.map +1 -0
  187. package/dist-lib/components/reui/card.d.ts +10 -0
  188. package/dist-lib/components/reui/card.d.ts.map +1 -0
  189. package/dist-lib/components/reui/checkbox.d.ts +5 -0
  190. package/dist-lib/components/reui/checkbox.d.ts.map +1 -0
  191. package/dist-lib/components/reui/dialog.d.ts +18 -0
  192. package/dist-lib/components/reui/dialog.d.ts.map +1 -0
  193. package/dist-lib/components/reui/dropdown-menu.d.ts +26 -0
  194. package/dist-lib/components/reui/dropdown-menu.d.ts.map +1 -0
  195. package/dist-lib/components/reui/frame.d.ts +29 -0
  196. package/dist-lib/components/reui/frame.d.ts.map +1 -0
  197. package/dist-lib/components/reui/input.d.ts +4 -0
  198. package/dist-lib/components/reui/input.d.ts.map +1 -0
  199. package/dist-lib/components/reui/label.d.ts +5 -0
  200. package/dist-lib/components/reui/label.d.ts.map +1 -0
  201. package/dist-lib/components/reui/number-field.d.ts +26 -0
  202. package/dist-lib/components/reui/number-field.d.ts.map +1 -0
  203. package/dist-lib/components/reui/popover.d.ts +11 -0
  204. package/dist-lib/components/reui/popover.d.ts.map +1 -0
  205. package/dist-lib/components/reui/radio-group.d.ts +6 -0
  206. package/dist-lib/components/reui/radio-group.d.ts.map +1 -0
  207. package/dist-lib/components/reui/select.d.ts +16 -0
  208. package/dist-lib/components/reui/select.d.ts.map +1 -0
  209. package/dist-lib/components/reui/separator.d.ts +5 -0
  210. package/dist-lib/components/reui/separator.d.ts.map +1 -0
  211. package/dist-lib/components/reui/sheet.d.ts +15 -0
  212. package/dist-lib/components/reui/sheet.d.ts.map +1 -0
  213. package/dist-lib/components/reui/sidebar.d.ts +70 -0
  214. package/dist-lib/components/reui/sidebar.d.ts.map +1 -0
  215. package/dist-lib/components/reui/skeleton.d.ts +3 -0
  216. package/dist-lib/components/reui/skeleton.d.ts.map +1 -0
  217. package/dist-lib/components/reui/sonner.d.ts +4 -0
  218. package/dist-lib/components/reui/sonner.d.ts.map +1 -0
  219. package/dist-lib/components/reui/spinner.d.ts +3 -0
  220. package/dist-lib/components/reui/spinner.d.ts.map +1 -0
  221. package/dist-lib/components/reui/switch.d.ts +7 -0
  222. package/dist-lib/components/reui/switch.d.ts.map +1 -0
  223. package/dist-lib/components/reui/tabs.d.ts +12 -0
  224. package/dist-lib/components/reui/tabs.d.ts.map +1 -0
  225. package/dist-lib/components/reui/textarea.d.ts +4 -0
  226. package/dist-lib/components/reui/textarea.d.ts.map +1 -0
  227. package/dist-lib/components/reui/tooltip.d.ts +8 -0
  228. package/dist-lib/components/reui/tooltip.d.ts.map +1 -0
  229. package/dist-lib/components/ui/svgs/claudeAiIcon.d.ts +4 -0
  230. package/dist-lib/components/ui/svgs/claudeAiIcon.d.ts.map +1 -0
  231. package/dist-lib/components/ui/svgs/gemini.d.ts +4 -0
  232. package/dist-lib/components/ui/svgs/gemini.d.ts.map +1 -0
  233. package/dist-lib/components/ui/svgs/openai.d.ts +4 -0
  234. package/dist-lib/components/ui/svgs/openai.d.ts.map +1 -0
  235. package/dist-lib/components/ui/svgs/openaiDark.d.ts +4 -0
  236. package/dist-lib/components/ui/svgs/openaiDark.d.ts.map +1 -0
  237. package/dist-lib/contracts/block-data.d.ts +399 -0
  238. package/dist-lib/contracts/block-data.d.ts.map +1 -0
  239. package/dist-lib/contracts/connectors.d.ts +50 -0
  240. package/dist-lib/contracts/connectors.d.ts.map +1 -0
  241. package/dist-lib/contracts/navigation.d.ts +101 -0
  242. package/dist-lib/contracts/navigation.d.ts.map +1 -0
  243. package/dist-lib/contracts/page-contract.d.ts +129 -0
  244. package/dist-lib/contracts/page-contract.d.ts.map +1 -0
  245. package/dist-lib/contracts/shared-props.d.ts +76 -0
  246. package/dist-lib/contracts/shared-props.d.ts.map +1 -0
  247. package/dist-lib/hooks/use-copy-to-clipboard.d.ts +2 -0
  248. package/dist-lib/hooks/use-copy-to-clipboard.d.ts.map +1 -0
  249. package/dist-lib/hooks/use-file-upload.d.ts +2 -0
  250. package/dist-lib/hooks/use-file-upload.d.ts.map +1 -0
  251. package/dist-lib/index.d.ts +22 -0
  252. package/dist-lib/index.d.ts.map +1 -0
  253. package/dist-lib/lib/deprecation.d.ts +10 -0
  254. package/dist-lib/lib/deprecation.d.ts.map +1 -0
  255. package/dist-lib/lib/hooks/use-copy-to-clipboard.d.ts +8 -0
  256. package/dist-lib/lib/hooks/use-copy-to-clipboard.d.ts.map +1 -0
  257. package/dist-lib/lib/hooks/use-file-upload.d.ts +47 -0
  258. package/dist-lib/lib/hooks/use-file-upload.d.ts.map +1 -0
  259. package/dist-lib/lib/hooks/use-mobile.d.ts +2 -0
  260. package/dist-lib/lib/hooks/use-mobile.d.ts.map +1 -0
  261. package/dist-lib/lib/portal-container.d.ts +9 -0
  262. package/dist-lib/lib/portal-container.d.ts.map +1 -0
  263. package/dist-lib/lib/utils.d.ts +3 -0
  264. package/dist-lib/lib/utils.d.ts.map +1 -0
  265. package/package.json +1 -1
@@ -0,0 +1,15 @@
1
+ /**
2
+ * HelpPanel (ContextAside) — inline flex panel for contextual help.
3
+ *
4
+ * Renders as a flex sibling of <main> in the shell, NOT as an overlay.
5
+ * Width animates from 0 to 300px. Content is page-specific,
6
+ * received via the HelpContext (set by ContractPage via useHelp).
7
+ *
8
+ * Uses logical CSS properties (border-s, ps, pe) for RTL support.
9
+ *
10
+ * @see DESIGN.md §ContextAside
11
+ * @see ADR-807 ref/page-contract-v1
12
+ */
13
+ import { type ReactElement } from "react";
14
+ export declare function HelpPanel(): ReactElement | null;
15
+ //# sourceMappingURL=HelpPanel.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"HelpPanel.d.ts","sourceRoot":"","sources":["../../../../src/base/shell/partials/HelpPanel.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAIH,OAAO,EAAa,KAAK,YAAY,EAAE,MAAM,OAAO,CAAC;AAKrD,wBAAgB,SAAS,IAAI,YAAY,GAAG,IAAI,CA0H/C"}
@@ -0,0 +1,15 @@
1
+ /**
2
+ * InlineInspector — inline flex panel for inspecting selected items.
3
+ *
4
+ * Renders as a flex sibling of <main> in the shell, NOT as an overlay.
5
+ * Width animates from 0 to inspector.width (default 380px).
6
+ * Contains tabs: Overview, Activity, Config.
7
+ *
8
+ * Tab state resets on selection change via React key remount (no ref/effect needed).
9
+ *
10
+ * @see DESIGN.md §P2 — Inspector / Drawer
11
+ * @see ui/previews/03-interaction-patterns.html
12
+ */
13
+ import { type ReactElement } from "react";
14
+ export declare function InlineInspector(): ReactElement | null;
15
+ //# sourceMappingURL=InlineInspector.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"InlineInspector.d.ts","sourceRoot":"","sources":["../../../../src/base/shell/partials/InlineInspector.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAIH,OAAO,EAAuB,KAAK,YAAY,EAAE,MAAM,OAAO,CAAC;AAgI/D,wBAAgB,eAAe,IAAI,YAAY,GAAG,IAAI,CAmCrD"}
@@ -0,0 +1,58 @@
1
+ import { type ReactNode } from "react";
2
+ import type { InspectorData } from "@/contracts/page-contract";
3
+ export interface InspectorAction {
4
+ id: string;
5
+ label: string;
6
+ icon?: string;
7
+ href?: string;
8
+ }
9
+ export interface InspectorSection {
10
+ id: string;
11
+ title: string;
12
+ fields: InspectorField[];
13
+ actions?: InspectorAction[];
14
+ }
15
+ export interface InspectorField {
16
+ key: string;
17
+ label: string;
18
+ value: string | number | boolean | null;
19
+ kind?: "text" | "status" | "boolean" | "timestamp" | "link" | "badge" | "code";
20
+ }
21
+ export interface InspectorResponse {
22
+ title: string;
23
+ subtitle?: string;
24
+ /** Status badge shown next to title in header. */
25
+ badge?: string;
26
+ /** Badge variant: 'success' | 'warning' | 'destructive' | 'info'. */
27
+ badgeVariant?: "success" | "warning" | "destructive" | "info";
28
+ sections: InspectorSection[];
29
+ }
30
+ interface InspectorContextValue {
31
+ selectedId: string | number | null;
32
+ select: (id: string | number) => void;
33
+ close: () => void;
34
+ enabled: boolean;
35
+ data: InspectorResponse | null;
36
+ loading: boolean;
37
+ width: number;
38
+ }
39
+ export declare function useInspector(): InspectorContextValue;
40
+ interface InspectorProviderProps {
41
+ inspector: InspectorData;
42
+ children: ReactNode;
43
+ }
44
+ /**
45
+ * InspectorProvider — manages inspector state and data fetching.
46
+ *
47
+ * Does NOT render the panel — shells render InlineInspector as a flex sibling.
48
+ * Exposes data, loading, selectedId, width through context.
49
+ */
50
+ export declare function InspectorProvider({ inspector, children, }: InspectorProviderProps): import("react/jsx-runtime").JSX.Element;
51
+ export declare function InspectorFieldValue({ field }: {
52
+ field: InspectorField;
53
+ }): import("react/jsx-runtime").JSX.Element;
54
+ export declare function InspectorSectionContent({ sections, }: {
55
+ sections: InspectorSection[];
56
+ }): import("react/jsx-runtime").JSX.Element;
57
+ export {};
58
+ //# sourceMappingURL=InspectorContext.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"InspectorContext.d.ts","sourceRoot":"","sources":["../../../../src/base/shell/partials/InspectorContext.tsx"],"names":[],"mappings":"AAEA,OAAO,EAOL,KAAK,SAAS,EACf,MAAM,OAAO,CAAC;AACf,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAI/D,MAAM,WAAW,eAAe;IAC9B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,gBAAgB;IAC/B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,cAAc,EAAE,CAAC;IACzB,OAAO,CAAC,EAAE,eAAe,EAAE,CAAC;CAC7B;AAED,MAAM,WAAW,cAAc;IAC7B,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,IAAI,CAAC;IACxC,IAAI,CAAC,EACD,MAAM,GACN,QAAQ,GACR,SAAS,GACT,WAAW,GACX,MAAM,GACN,OAAO,GACP,MAAM,CAAC;CACZ;AAED,MAAM,WAAW,iBAAiB;IAChC,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,kDAAkD;IAClD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,qEAAqE;IACrE,YAAY,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,aAAa,GAAG,MAAM,CAAC;IAC9D,QAAQ,EAAE,gBAAgB,EAAE,CAAC;CAC9B;AAED,UAAU,qBAAqB;IAC7B,UAAU,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC;IACnC,MAAM,EAAE,CAAC,EAAE,EAAE,MAAM,GAAG,MAAM,KAAK,IAAI,CAAC;IACtC,KAAK,EAAE,MAAM,IAAI,CAAC;IAClB,OAAO,EAAE,OAAO,CAAC;IACjB,IAAI,EAAE,iBAAiB,GAAG,IAAI,CAAC;IAC/B,OAAO,EAAE,OAAO,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;CACf;AAeD,wBAAgB,YAAY,IAAI,qBAAqB,CAEpD;AAID,UAAU,sBAAsB;IAC9B,SAAS,EAAE,aAAa,CAAC;IACzB,QAAQ,EAAE,SAAS,CAAC;CACrB;AAED;;;;;GAKG;AACH,wBAAgB,iBAAiB,CAAC,EAChC,SAAS,EACT,QAAQ,GACT,EAAE,sBAAsB,2CAwDxB;AAID,wBAAgB,mBAAmB,CAAC,EAAE,KAAK,EAAE,EAAE;IAAE,KAAK,EAAE,cAAc,CAAA;CAAE,2CAmDvE;AAED,wBAAgB,uBAAuB,CAAC,EACtC,QAAQ,GACT,EAAE;IACD,QAAQ,EAAE,gBAAgB,EAAE,CAAC;CAC9B,2CAiCA"}
@@ -0,0 +1,29 @@
1
+ import type { ReactNode } from "react";
2
+ interface InspectorPanelProps {
3
+ /** Whether the panel is open. */
4
+ open: boolean;
5
+ /** Called when the panel should close (overlay click or X button). */
6
+ onClose: () => void;
7
+ /** Panel width in pixels (from inspector descriptor, default 440). */
8
+ width?: number;
9
+ /** Panel title. */
10
+ title?: string;
11
+ /** Optional description below the title. */
12
+ description?: string;
13
+ /** Panel body content (tabs, detail sections, etc.). */
14
+ children: ReactNode;
15
+ }
16
+ /**
17
+ * InspectorPanel — drawer-style side panel for inspecting selected items.
18
+ *
19
+ * Wraps the ReUI Sheet (Radix Dialog) with:
20
+ * - Lighter overlay (bg-black/20 instead of bg-black/50)
21
+ * - Configurable width (default 440px from inspector_descriptor)
22
+ * - Jira-style 220ms cubic-bezier animation
23
+ *
24
+ * @see inspector_descriptor (PHP) for backend configuration
25
+ * @see HelpPanel for the similar contextual-help slide-out
26
+ */
27
+ export declare function InspectorPanel({ open, onClose, width, title, description, children, }: InspectorPanelProps): import("react/jsx-runtime").JSX.Element;
28
+ export {};
29
+ //# sourceMappingURL=InspectorPanel.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"InspectorPanel.d.ts","sourceRoot":"","sources":["../../../../src/base/shell/partials/InspectorPanel.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AASvC,UAAU,mBAAmB;IAC3B,iCAAiC;IACjC,IAAI,EAAE,OAAO,CAAC;IACd,sEAAsE;IACtE,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,sEAAsE;IACtE,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,mBAAmB;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,4CAA4C;IAC5C,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,wDAAwD;IACxD,QAAQ,EAAE,SAAS,CAAC;CACrB;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,cAAc,CAAC,EAC7B,IAAI,EACJ,OAAO,EACP,KAAW,EACX,KAAK,EACL,WAAW,EACX,QAAQ,GACT,EAAE,mBAAmB,2CAmBrB"}
@@ -0,0 +1,23 @@
1
+ /**
2
+ * NavErrorBoundary — error boundary for sidebar and page header.
3
+ * Shows a minimal fallback if navigation rendering fails.
4
+ *
5
+ * @see NV-05-ux-shell-sidebar.md §8.3
6
+ */
7
+ import { Component, type ErrorInfo, type ReactNode } from "react";
8
+ interface Props {
9
+ children: ReactNode;
10
+ fallback?: ReactNode;
11
+ }
12
+ interface State {
13
+ hasError: boolean;
14
+ error?: Error;
15
+ }
16
+ export declare class NavErrorBoundary extends Component<Props, State> {
17
+ constructor(props: Props);
18
+ static getDerivedStateFromError(error: Error): State;
19
+ componentDidCatch(error: Error, info: ErrorInfo): void;
20
+ render(): ReactNode;
21
+ }
22
+ export {};
23
+ //# sourceMappingURL=NavErrorBoundary.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NavErrorBoundary.d.ts","sourceRoot":"","sources":["../../../../src/base/shell/partials/NavErrorBoundary.tsx"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,SAAS,EAAE,KAAK,SAAS,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAElE,UAAU,KAAK;IACb,QAAQ,EAAE,SAAS,CAAC;IACpB,QAAQ,CAAC,EAAE,SAAS,CAAC;CACtB;AAED,UAAU,KAAK;IACb,QAAQ,EAAE,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,KAAK,CAAC;CACf;AAED,qBAAa,gBAAiB,SAAQ,SAAS,CAAC,KAAK,EAAE,KAAK,CAAC;gBAC/C,KAAK,EAAE,KAAK;IAKxB,MAAM,CAAC,wBAAwB,CAAC,KAAK,EAAE,KAAK,GAAG,KAAK;IAIpD,iBAAiB,CAAC,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,SAAS,GAAG,IAAI;IAQtD,MAAM,IAAI,SAAS;CAwBpB"}
@@ -0,0 +1,17 @@
1
+ import { type ReactNode } from "react";
2
+ interface OverlayScreenProps {
3
+ children: ReactNode;
4
+ onClose?: () => void;
5
+ }
6
+ /**
7
+ * Full-screen overlay panel with X close button (NV-05 — ADR-807).
8
+ *
9
+ * Not a modal (no backdrop, no centering). Renders a stacked screen
10
+ * on top of the current page. The underlying page stays mounted in the DOM.
11
+ *
12
+ * Close behavior: calls onClose if provided, otherwise window.history.back().
13
+ * Also closes on Escape key.
14
+ */
15
+ export declare function OverlayScreen({ children, onClose }: OverlayScreenProps): import("react/jsx-runtime").JSX.Element;
16
+ export {};
17
+ //# sourceMappingURL=OverlayScreen.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"OverlayScreen.d.ts","sourceRoot":"","sources":["../../../../src/base/shell/partials/OverlayScreen.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,SAAS,EAA0B,MAAM,OAAO,CAAC;AAG/D,UAAU,kBAAkB;IAC1B,QAAQ,EAAE,SAAS,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB;AAED;;;;;;;;GAQG;AACH,wBAAgB,aAAa,CAAC,EAAE,QAAQ,EAAE,OAAO,EAAE,EAAE,kBAAkB,2CA4CtE"}
@@ -0,0 +1,17 @@
1
+ /**
2
+ * PageActionButton — handles navigation, API calls, loading, and confirmation.
3
+ *
4
+ * Replaces inline ActionButton in PageHeader with full v2 support:
5
+ * - GET → Link navigation (existing)
6
+ * - POST/PUT/DELETE → Inertia in-place with preserveState
7
+ * - confirmation → ConfirmationDialog before executing
8
+ * - loading state while request in-flight
9
+ *
10
+ * @see Page Builder v2 spec §Gap 6
11
+ */
12
+ import { type ReactElement } from "react";
13
+ import type { PageAction } from "@/contracts/page-contract";
14
+ export declare function PageActionButton({ action, }: {
15
+ action: PageAction;
16
+ }): ReactElement;
17
+ //# sourceMappingURL=PageActionButton.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PageActionButton.d.ts","sourceRoot":"","sources":["../../../../src/base/shell/partials/PageActionButton.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAyB,KAAK,YAAY,EAAE,MAAM,OAAO,CAAC;AAKjE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAC;AAkB5D,wBAAgB,gBAAgB,CAAC,EAC/B,MAAM,GACP,EAAE;IACD,MAAM,EAAE,UAAU,CAAC;CACpB,GAAG,YAAY,CA+If"}
@@ -0,0 +1,22 @@
1
+ /**
2
+ * PageFilterTabs — page-level filter tabs between header and content.
3
+ *
4
+ * Renders horizontal tabs matching preview 03 pattern:
5
+ * "Todos (4) | Ativos (2) | Com Erro (1) | Arquivados"
6
+ *
7
+ * Active tab: color primary, font-weight 500, 2px underline.
8
+ * Inactive: color text-muted, hover text.
9
+ *
10
+ * @see ui/previews/03-interaction-patterns.html .tabs class
11
+ * @see DESIGN.md §P1 Tabs
12
+ */
13
+ import { type ReactElement } from "react";
14
+ import type { PageFilterTab } from "@/contracts/page-contract";
15
+ interface PageFilterTabsProps {
16
+ tabs: PageFilterTab[];
17
+ activeTab?: string;
18
+ onTabChange?: (key: string) => void;
19
+ }
20
+ export declare function PageFilterTabs({ tabs, activeTab: controlledActive, onTabChange, }: PageFilterTabsProps): ReactElement;
21
+ export {};
22
+ //# sourceMappingURL=PageFilterTabs.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PageFilterTabs.d.ts","sourceRoot":"","sources":["../../../../src/base/shell/partials/PageFilterTabs.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EAAY,KAAK,YAAY,EAAE,MAAM,OAAO,CAAC;AAEpD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAE/D,UAAU,mBAAmB;IAC3B,IAAI,EAAE,aAAa,EAAE,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAC;CACrC;AAED,wBAAgB,cAAc,CAAC,EAC7B,IAAI,EACJ,SAAS,EAAE,gBAAgB,EAC3B,WAAW,GACZ,EAAE,mBAAmB,GAAG,YAAY,CAgDpC"}
@@ -0,0 +1,22 @@
1
+ /**
2
+ * PageHeader — universal 5-slot page header.
3
+ *
4
+ * Slots:
5
+ * 1. Breadcrumbs (always)
6
+ * 2. Title row: optional icon + title + optional badge
7
+ * 3. Subtitle (optional)
8
+ * 4. Favorite star (hover-reveal, optional via favoritable)
9
+ * 5. Actions toolbar: primary (1 max) + secondary (2 max) + overflow menu
10
+ *
11
+ * @see DESIGN.md §PageHeader
12
+ * @see ADR-807 ref/page-contract-v1 §3 (PageMeta shape)
13
+ */
14
+ import { type ReactElement } from "react";
15
+ import type { PageMeta } from "@/contracts/page-contract";
16
+ interface PageHeaderProps {
17
+ page: PageMeta;
18
+ onMobileMenuClick?: () => void;
19
+ }
20
+ export declare function PageHeader({ page, onMobileMenuClick, }: PageHeaderProps): ReactElement;
21
+ export {};
22
+ //# sourceMappingURL=PageHeader.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PageHeader.d.ts","sourceRoot":"","sources":["../../../../src/base/shell/partials/PageHeader.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAIH,OAAO,EAAyB,KAAK,YAAY,EAAE,MAAM,OAAO,CAAC;AAejE,OAAO,KAAK,EAAE,QAAQ,EAAc,MAAM,2BAA2B,CAAC;AAsGtE,UAAU,eAAe;IACvB,IAAI,EAAE,QAAQ,CAAC;IACf,iBAAiB,CAAC,EAAE,MAAM,IAAI,CAAC;CAChC;AAED,wBAAgB,UAAU,CAAC,EACzB,IAAI,EACJ,iBAAiB,GAClB,EAAE,eAAe,GAAG,YAAY,CAsHhC"}
@@ -0,0 +1,17 @@
1
+ /**
2
+ * SidebarNav — 3-level navigation inside the ProductShell sidebar.
3
+ *
4
+ * Sections (L1) → Items (L2) → Children (L3).
5
+ * Active state driven by NavigationPayload.activeKey (server-resolved).
6
+ * Sidebar expand/collapse state persisted in localStorage.
7
+ * Quick find (Cmd+K) filters navigation client-side.
8
+ *
9
+ * Visual reference: ui/previews/03-interaction-patterns.html (sidebar section).
10
+ * Uses flat HTML + Tailwind — no ReUI sidebar wrappers (DataGrid/SidebarMenu removed).
11
+ *
12
+ * @see NV-05-ux-shell-sidebar.md §3
13
+ * @see ADR-807 ref/shell-and-navigation §2
14
+ */
15
+ import { type ReactElement } from "react";
16
+ export declare function SidebarNav(): ReactElement;
17
+ //# sourceMappingURL=SidebarNav.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SidebarNav.d.ts","sourceRoot":"","sources":["../../../../src/base/shell/partials/SidebarNav.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAIH,OAAO,EACL,KAAK,YAAY,EAMlB,MAAM,OAAO,CAAC;AAgiCf,wBAAgB,UAAU,IAAI,YAAY,CAczC"}
@@ -0,0 +1,58 @@
1
+ /**
2
+ * appearance — dark mode system with host detection + manual override.
3
+ *
4
+ * Three-tier resolution:
5
+ * 1. Manual override (user clicked toggle) → 'light' or 'dark'
6
+ * 2. 'system' → detectHostTheme() (Moodle/WP classes, attrs, localStorage)
7
+ * 3. 'system' + no host signal → OS prefers-color-scheme
8
+ *
9
+ * Applies theme via:
10
+ * - `data-theme="dark|light"` on all `.middag-root` elements
11
+ * - `class="dark"` on `<html>` (for Tailwind dark: prefix compatibility)
12
+ *
13
+ * Never modifies host page's own classes/attributes (except <html>.dark which
14
+ * is MIDDAG's own — the host doesn't use Tailwind dark: prefix).
15
+ *
16
+ * @see host-theme-detector.ts — read-only host detection
17
+ * @see useHostTheme.ts — React hook with live observation
18
+ */
19
+ export type Appearance = "system" | "light" | "dark";
20
+ export type EffectiveTheme = "light" | "dark";
21
+ /**
22
+ * Resolve the effective theme from a preference.
23
+ * 'system' consults host page first, then OS.
24
+ */
25
+ export declare function getEffectiveTheme(preference: Appearance): EffectiveTheme;
26
+ /**
27
+ * Read stored preference from localStorage.
28
+ */
29
+ export declare function getStoredAppearance(): Appearance;
30
+ /**
31
+ * Apply resolved theme to DOM.
32
+ * Sets data-theme on all .middag-root elements + class dark on <html> for Tailwind.
33
+ */
34
+ export declare function applyTheme(theme: EffectiveTheme): void;
35
+ /**
36
+ * Apply appearance: persist preference, toggle dark class, set data-theme on MIDDAG roots.
37
+ */
38
+ export declare function setAppearance(preference: Appearance): void;
39
+ /**
40
+ * Cycle through modes: System → Light → Dark → System.
41
+ */
42
+ export declare function cycleAppearance(): Appearance;
43
+ /**
44
+ * Toggle document direction between LTR and RTL.
45
+ * Persists choice in localStorage.
46
+ */
47
+ export declare function toggleDir(): "ltr" | "rtl";
48
+ /**
49
+ * Restore persisted direction on load.
50
+ */
51
+ export declare function initDir(): void;
52
+ /**
53
+ * Listen for OS theme changes.
54
+ * Only reacts when preference is 'system'.
55
+ * Returns a cleanup function.
56
+ */
57
+ export declare function onSystemThemeChange(callback?: () => void): () => void;
58
+ //# sourceMappingURL=appearance.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"appearance.d.ts","sourceRoot":"","sources":["../../../src/base/theme/appearance.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AASH,MAAM,MAAM,UAAU,GAAG,QAAQ,GAAG,OAAO,GAAG,MAAM,CAAC;AAErD,MAAM,MAAM,cAAc,GAAG,OAAO,GAAG,MAAM,CAAC;AAE9C;;;GAGG;AACH,wBAAgB,iBAAiB,CAAC,UAAU,EAAE,UAAU,GAAG,cAAc,CAWxE;AAED;;GAEG;AACH,wBAAgB,mBAAmB,IAAI,UAAU,CAUhD;AAED;;;GAGG;AACH,wBAAgB,UAAU,CAAC,KAAK,EAAE,cAAc,GAAG,IAAI,CAOtD;AAED;;GAEG;AACH,wBAAgB,aAAa,CAAC,UAAU,EAAE,UAAU,GAAG,IAAI,CAS1D;AAED;;GAEG;AACH,wBAAgB,eAAe,IAAI,UAAU,CAM5C;AAED;;;GAGG;AACH,wBAAgB,SAAS,IAAI,KAAK,GAAG,KAAK,CAOzC;AAED;;GAEG;AACH,wBAAgB,OAAO,IAAI,IAAI,CAK9B;AAED;;;;GAIG;AACH,wBAAgB,mBAAmB,CAAC,QAAQ,CAAC,EAAE,MAAM,IAAI,GAAG,MAAM,IAAI,CAarE"}
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Host theme detector — detects dark/light mode from the host page (Moodle, WordPress, etc.)
3
+ *
4
+ * Designed to be defensive: each host CMS/theme may implement dark mode differently.
5
+ * Detection is read-only — never modifies the host's DOM, classes, or localStorage.
6
+ *
7
+ * Priority order:
8
+ * 1. Class/attribute on <html> and <body>
9
+ * 2. Known localStorage keys (scan, not assume)
10
+ * 3. prefers-color-scheme media query (OS fallback)
11
+ *
12
+ * @see ADR-807 — CSS isolation via .middag-root
13
+ */
14
+ export type DetectedTheme = "dark" | "light" | "auto";
15
+ /**
16
+ * Detect the host page's theme. Read-only — never modifies host DOM.
17
+ *
18
+ * Returns 'dark', 'light', or 'auto' (couldn't determine).
19
+ */
20
+ export declare function detectHostTheme(): DetectedTheme;
21
+ export declare const OBSERVED_ATTRIBUTES: string[];
22
+ //# sourceMappingURL=host-theme-detector.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"host-theme-detector.d.ts","sourceRoot":"","sources":["../../../src/base/theme/host-theme-detector.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAEH,MAAM,MAAM,aAAa,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,CAAC;AA2FtD;;;;GAIG;AACH,wBAAgB,eAAe,IAAI,aAAa,CA0B/C;AAID,eAAO,MAAM,mBAAmB,UAS/B,CAAC"}
@@ -0,0 +1,27 @@
1
+ /**
2
+ * useHostTheme — React hook that detects and tracks the host page's dark/light theme.
3
+ *
4
+ * Observes:
5
+ * - Class/attribute mutations on <html> and <body> (MutationObserver)
6
+ * - OS prefers-color-scheme changes (matchMedia)
7
+ * - localStorage changes from other tabs (storage event)
8
+ *
9
+ * Never modifies the host's DOM or localStorage.
10
+ * Applies theme to the MIDDAG root container via data-theme attribute.
11
+ *
12
+ * @param override Manual override: 'auto' (detect from host), 'dark', or 'light'.
13
+ */
14
+ import { type DetectedTheme } from "@/base/theme/host-theme-detector";
15
+ export type ThemeOverride = "auto" | "dark" | "light";
16
+ export interface UseHostThemeResult {
17
+ /** Resolved theme: always 'dark' or 'light' (never 'auto'). */
18
+ theme: "dark" | "light";
19
+ /** Raw detected value from host before override. */
20
+ detected: DetectedTheme;
21
+ /** Current override setting. */
22
+ override: ThemeOverride;
23
+ /** Change override at runtime. */
24
+ setOverride: (override: ThemeOverride) => void;
25
+ }
26
+ export declare function useHostTheme(initialOverride?: ThemeOverride): UseHostThemeResult;
27
+ //# sourceMappingURL=useHostTheme.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useHostTheme.d.ts","sourceRoot":"","sources":["../../../src/base/theme/useHostTheme.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAGH,OAAO,EAGL,KAAK,aAAa,EACnB,MAAM,kCAAkC,CAAC;AAE1C,MAAM,MAAM,aAAa,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC;AAEtD,MAAM,WAAW,kBAAkB;IACjC,+DAA+D;IAC/D,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC;IACxB,oDAAoD;IACpD,QAAQ,EAAE,aAAa,CAAC;IACxB,gCAAgC;IAChC,QAAQ,EAAE,aAAa,CAAC;IACxB,kCAAkC;IAClC,WAAW,EAAE,CAAC,QAAQ,EAAE,aAAa,KAAK,IAAI,CAAC;CAChD;AAWD,wBAAgB,YAAY,CAC1B,eAAe,GAAE,aAAsB,GACtC,kBAAkB,CAuDpB"}
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Clipboard utility — safe clipboard write with fallback.
3
+ *
4
+ * @see NV-05-ux-blocks.md §4.4 (copy-to-clipboard in DetailSection)
5
+ */
6
+ /**
7
+ * Copy text to clipboard.
8
+ * Returns true on success, false on failure.
9
+ * Falls back to execCommand when Clipboard API is unavailable.
10
+ */
11
+ export declare function copyToClipboard(text: string): Promise<boolean>;
12
+ //# sourceMappingURL=clipboard.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"clipboard.d.ts","sourceRoot":"","sources":["../../../src/base/utils/clipboard.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH;;;;GAIG;AACH,wBAAsB,eAAe,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CA2BpE"}
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Shared condition evaluation for FormPanelBlock and DenseTableBlock.
3
+ * Extracted from FormPanelBlock to enable reuse across block types.
4
+ */
5
+ import type { FormCondition } from "@/contracts/block-data";
6
+ export declare function evaluateCondition(condition: FormCondition, data: Record<string, unknown>): boolean;
7
+ //# sourceMappingURL=conditions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"conditions.d.ts","sourceRoot":"","sources":["../../../src/base/utils/conditions.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAE5D,wBAAgB,iBAAiB,CAC/B,SAAS,EAAE,aAAa,EACxB,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAC5B,OAAO,CAkBT"}
@@ -0,0 +1,21 @@
1
+ /**
2
+ * Icon resolution utility — resolves kebab-case icon names to Hugeicons icon data.
3
+ *
4
+ * Blocks receive icon names as strings from the server; this util resolves them.
5
+ * Uses a static import map for tree-shaking (no wildcard import).
6
+ *
7
+ * @see NV-05-ux-blocks.md — blocks reference icons by kebab-case name
8
+ */
9
+ import type { IconSvgElement } from "@hugeicons/react";
10
+ /** Hugeicons icon data type — same as IconSvgElement from @hugeicons/react */
11
+ export type IconData = IconSvgElement;
12
+ /**
13
+ * Resolve a Hugeicons icon from its kebab-case name.
14
+ * Falls back to InboxIcon if not found.
15
+ */
16
+ export declare function getIcon(name: string): IconData;
17
+ /**
18
+ * Check if an icon name is registered.
19
+ */
20
+ export declare function hasIcon(name: string): boolean;
21
+ //# sourceMappingURL=icons.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../../src/base/utils/icons.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAkDvD,8EAA8E;AAC9E,MAAM,MAAM,QAAQ,GAAG,cAAc,CAAC;AA6DtC;;;GAGG;AACH,wBAAgB,OAAO,CAAC,IAAI,EAAE,MAAM,GAAG,QAAQ,CAE9C;AAED;;GAEG;AACH,wBAAgB,OAAO,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAE7C"}
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Interpolates {field} placeholders in a template string with values from a data record.
3
+ * Used for row action href and confirmation message interpolation.
4
+ * Example: interpolate('/api/{id}/process', { id: 42 }) -> '/api/42/process'
5
+ */
6
+ export declare function interpolate(template: string, data: Record<string, unknown>): string;
7
+ //# sourceMappingURL=interpolate.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"interpolate.d.ts","sourceRoot":"","sources":["../../../src/base/utils/interpolate.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,wBAAgB,WAAW,CACzB,QAAQ,EAAE,MAAM,EAChB,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAC5B,MAAM,CAIR"}
@@ -0,0 +1,28 @@
1
+ /**
2
+ * Time formatting utilities — relative and absolute timestamps.
3
+ *
4
+ * Rules:
5
+ * - < 1 min: "Agora"
6
+ * - < 1h: "N minutos atrás"
7
+ * - < 24h: "HH:MM"
8
+ * - yesterday: "Ontem, HH:MM"
9
+ * - < 30 days: "D Mmm, HH:MM"
10
+ * - >= 30 days: "D Mmm YYYY"
11
+ *
12
+ * @see NV-05-ux-blocks.md §6 (timeline timestamps)
13
+ */
14
+ /**
15
+ * Format a Unix timestamp (seconds) as relative/absolute text.
16
+ */
17
+ export declare function formatRelativeTime(timestamp: number): string;
18
+ /**
19
+ * Return ISO 8601 string from a Unix timestamp (seconds).
20
+ * Used as tooltip/title for <time datetime>.
21
+ */
22
+ export declare function formatISO(timestamp: number): string;
23
+ /**
24
+ * Return a date group label for timeline grouping.
25
+ * "Hoje", "Ontem", or "D Mmm YYYY".
26
+ */
27
+ export declare function formatDateGroupLabel(timestamp: number): string;
28
+ //# sourceMappingURL=time.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"time.d.ts","sourceRoot":"","sources":["../../../src/base/utils/time.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AA+CH;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAe5D;AAED;;;GAGG;AACH,wBAAgB,SAAS,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAEnD;AAED;;;GAGG;AACH,wBAAgB,oBAAoB,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAc9D"}
@@ -0,0 +1,19 @@
1
+ import * as React from "react";
2
+ import { AlertDialog as AlertDialogPrimitive } from "radix-ui";
3
+ import { Button } from "@/components/reui/button";
4
+ declare function AlertDialog({ ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
5
+ declare function AlertDialogTrigger({ ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Trigger>): import("react/jsx-runtime").JSX.Element;
6
+ declare function AlertDialogPortal({ ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Portal>): import("react/jsx-runtime").JSX.Element;
7
+ declare function AlertDialogOverlay({ className, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Overlay>): import("react/jsx-runtime").JSX.Element;
8
+ declare function AlertDialogContent({ className, size, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Content> & {
9
+ size?: "default" | "sm";
10
+ }): import("react/jsx-runtime").JSX.Element;
11
+ declare function AlertDialogHeader({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
12
+ declare function AlertDialogFooter({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
13
+ declare function AlertDialogTitle({ className, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Title>): import("react/jsx-runtime").JSX.Element;
14
+ declare function AlertDialogDescription({ className, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Description>): import("react/jsx-runtime").JSX.Element;
15
+ declare function AlertDialogMedia({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
16
+ declare function AlertDialogAction({ className, variant, size, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Action> & Pick<React.ComponentProps<typeof Button>, "variant" | "size">): import("react/jsx-runtime").JSX.Element;
17
+ declare function AlertDialogCancel({ className, variant, size, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Cancel> & Pick<React.ComponentProps<typeof Button>, "variant" | "size">): import("react/jsx-runtime").JSX.Element;
18
+ export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, };
19
+ //# sourceMappingURL=alert-dialog.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"alert-dialog.d.ts","sourceRoot":"","sources":["../../../src/components/reui/alert-dialog.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,WAAW,IAAI,oBAAoB,EAAE,MAAM,UAAU,CAAC;AAG/D,OAAO,EAAE,MAAM,EAAE,MAAM,0BAA0B,CAAC;AAElD,iBAAS,WAAW,CAAC,EACnB,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,oBAAoB,CAAC,IAAI,CAAC,2CAExD;AAED,iBAAS,kBAAkB,CAAC,EAC1B,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,oBAAoB,CAAC,OAAO,CAAC,2CAI3D;AAED,iBAAS,iBAAiB,CAAC,EACzB,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,oBAAoB,CAAC,MAAM,CAAC,2CAI1D;AAED,iBAAS,kBAAkB,CAAC,EAC1B,SAAS,EACT,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,oBAAoB,CAAC,OAAO,CAAC,2CAW3D;AAED,iBAAS,kBAAkB,CAAC,EAC1B,SAAS,EACT,IAAgB,EAChB,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,oBAAoB,CAAC,OAAO,CAAC,GAAG;IAC7D,IAAI,CAAC,EAAE,SAAS,GAAG,IAAI,CAAC;CACzB,2CAeA;AAED,iBAAS,iBAAiB,CAAC,EACzB,SAAS,EACT,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,2CAW7B;AAED,iBAAS,iBAAiB,CAAC,EACzB,SAAS,EACT,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,2CAW7B;AAED,iBAAS,gBAAgB,CAAC,EACxB,SAAS,EACT,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,oBAAoB,CAAC,KAAK,CAAC,2CAWzD;AAED,iBAAS,sBAAsB,CAAC,EAC9B,SAAS,EACT,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,oBAAoB,CAAC,WAAW,CAAC,2CAQ/D;AAED,iBAAS,gBAAgB,CAAC,EACxB,SAAS,EACT,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,2CAW7B;AAED,iBAAS,iBAAiB,CAAC,EACzB,SAAS,EACT,OAAmB,EACnB,IAAgB,EAChB,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,oBAAoB,CAAC,MAAM,CAAC,GACzD,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,OAAO,MAAM,CAAC,EAAE,SAAS,GAAG,MAAM,CAAC,2CAU9D;AAED,iBAAS,iBAAiB,CAAC,EACzB,SAAS,EACT,OAAmB,EACnB,IAAgB,EAChB,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,oBAAoB,CAAC,MAAM,CAAC,GACzD,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,OAAO,MAAM,CAAC,EAAE,SAAS,GAAG,MAAM,CAAC,2CAU9D;AAED,OAAO,EACL,WAAW,EACX,iBAAiB,EACjB,iBAAiB,EACjB,kBAAkB,EAClB,sBAAsB,EACtB,iBAAiB,EACjB,iBAAiB,EACjB,gBAAgB,EAChB,kBAAkB,EAClB,iBAAiB,EACjB,gBAAgB,EAChB,kBAAkB,GACnB,CAAC"}
@@ -0,0 +1,10 @@
1
+ import { type VariantProps } from "class-variance-authority";
2
+ declare const alertVariants: (props?: ({
3
+ variant?: "default" | "warning" | "success" | "info" | "destructive" | "invert" | null | undefined;
4
+ } & import("class-variance-authority/types").ClassProp) | undefined) => string;
5
+ declare function Alert({ className, variant, ...props }: React.ComponentProps<"div"> & VariantProps<typeof alertVariants>): import("react/jsx-runtime").JSX.Element;
6
+ declare function AlertTitle({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
7
+ declare function AlertDescription({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
8
+ declare function AlertAction({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
9
+ export { Alert, AlertTitle, AlertDescription, AlertAction };
10
+ //# sourceMappingURL=alert.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"alert.d.ts","sourceRoot":"","sources":["../../../src/components/reui/alert.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAIlE,QAAA,MAAM,aAAa;;8EA4BlB,CAAC;AAEF,iBAAS,KAAK,CAAC,EACb,SAAS,EACT,OAAO,EACP,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,GAAG,YAAY,CAAC,OAAO,aAAa,CAAC,2CASlE;AAED,iBAAS,UAAU,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,2CAWvE;AAED,iBAAS,gBAAgB,CAAC,EACxB,SAAS,EACT,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,2CAW7B;AAED,iBAAS,WAAW,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,2CAWxE;AAED,OAAO,EAAE,KAAK,EAAE,UAAU,EAAE,gBAAgB,EAAE,WAAW,EAAE,CAAC"}
@@ -0,0 +1,12 @@
1
+ import { type VariantProps } from "class-variance-authority";
2
+ declare const badgeVariants: (props?: ({
3
+ variant?: "default" | "warning" | "success" | "info" | "destructive" | "secondary" | "focus" | "invert" | "outline" | "primary-light" | "warning-light" | "success-light" | "info-light" | "destructive-light" | "invert-light" | "focus-light" | "primary-outline" | "warning-outline" | "success-outline" | "info-outline" | "destructive-outline" | "invert-outline" | "focus-outline" | null | undefined;
4
+ size?: "default" | "xs" | "sm" | "lg" | "xl" | null | undefined;
5
+ radius?: "default" | "full" | null | undefined;
6
+ } & import("class-variance-authority/types").ClassProp) | undefined) => string;
7
+ interface BadgeProps extends React.ComponentProps<"span">, VariantProps<typeof badgeVariants> {
8
+ asChild?: boolean;
9
+ }
10
+ declare function Badge({ className, variant, size, radius, asChild, ...props }: BadgeProps): import("react/jsx-runtime").JSX.Element;
11
+ export { Badge, badgeVariants, type BadgeProps };
12
+ //# sourceMappingURL=badge.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"badge.d.ts","sourceRoot":"","sources":["../../../src/components/reui/badge.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAKlE,QAAA,MAAM,aAAa;;;;8EA8DlB,CAAC;AAEF,UAAU,UACR,SAAQ,KAAK,CAAC,cAAc,CAAC,MAAM,CAAC,EAAE,YAAY,CAAC,OAAO,aAAa,CAAC;IACxE,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED,iBAAS,KAAK,CAAC,EACb,SAAS,EACT,OAAO,EACP,IAAI,EACJ,MAAM,EACN,OAAe,EACf,GAAG,KAAK,EACT,EAAE,UAAU,2CAUZ;AAED,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,KAAK,UAAU,EAAE,CAAC"}
@@ -0,0 +1,11 @@
1
+ import * as React from "react";
2
+ import { type VariantProps } from "class-variance-authority";
3
+ declare const buttonVariants: (props?: ({
4
+ variant?: "link" | "default" | "destructive" | "secondary" | "ghost" | "outline" | null | undefined;
5
+ size?: "default" | "icon" | "xs" | "sm" | "lg" | "icon-xs" | "icon-sm" | "icon-lg" | null | undefined;
6
+ } & import("class-variance-authority/types").ClassProp) | undefined) => string;
7
+ declare function Button({ className, variant, size, asChild, ...props }: React.ComponentProps<"button"> & VariantProps<typeof buttonVariants> & {
8
+ asChild?: boolean;
9
+ }): import("react/jsx-runtime").JSX.Element;
10
+ export { Button, buttonVariants };
11
+ //# sourceMappingURL=button.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../../src/components/reui/button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAKlE,QAAA,MAAM,cAAc;;;8EAgCnB,CAAC;AAEF,iBAAS,MAAM,CAAC,EACd,SAAS,EACT,OAAmB,EACnB,IAAgB,EAChB,OAAe,EACf,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,QAAQ,CAAC,GAC/B,YAAY,CAAC,OAAO,cAAc,CAAC,GAAG;IACpC,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,2CAYF;AAED,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,CAAC"}
@@ -0,0 +1,10 @@
1
+ import * as React from "react";
2
+ declare function Card({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
3
+ declare function CardHeader({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
4
+ declare function CardTitle({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
5
+ declare function CardDescription({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
6
+ declare function CardAction({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
7
+ declare function CardContent({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
8
+ declare function CardFooter({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
9
+ export { Card, CardHeader, CardFooter, CardTitle, CardAction, CardDescription, CardContent, };
10
+ //# sourceMappingURL=card.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"card.d.ts","sourceRoot":"","sources":["../../../src/components/reui/card.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B,iBAAS,IAAI,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,2CAWjE;AAED,iBAAS,UAAU,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,2CAWvE;AAED,iBAAS,SAAS,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,2CAQtE;AAED,iBAAS,eAAe,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,2CAQ5E;AAED,iBAAS,UAAU,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,2CAWvE;AAED,iBAAS,WAAW,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,2CAQxE;AAED,iBAAS,UAAU,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,2CAQvE;AAED,OAAO,EACL,IAAI,EACJ,UAAU,EACV,UAAU,EACV,SAAS,EACT,UAAU,EACV,eAAe,EACf,WAAW,GACZ,CAAC"}
@@ -0,0 +1,5 @@
1
+ import * as React from "react";
2
+ import { Checkbox as CheckboxPrimitive } from "radix-ui";
3
+ declare function Checkbox({ className, ...props }: React.ComponentProps<typeof CheckboxPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
4
+ export { Checkbox };
5
+ //# sourceMappingURL=checkbox.d.ts.map