@mt-gloss/ui 0.0.9 → 0.0.11

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 (275) hide show
  1. package/BaseAsyncButton-XBXVlXMl.js +223 -0
  2. package/Expandable-SuZVwO7Z.js +13366 -0
  3. package/UIContext-CEp38xw-.js +1673 -0
  4. package/catalog.d.ts +7 -0
  5. package/catalog.js +614 -0
  6. package/index.d.ts +274 -2
  7. package/index.js +2217 -18330
  8. package/internals.d.ts +64 -0
  9. package/internals.js +279 -0
  10. package/lib/base/BaseAccordion/BaseAccordion.d.ts +51 -0
  11. package/lib/base/BaseAlert/BaseAlert.d.ts +28 -0
  12. package/lib/base/BaseAsyncButton/BaseAsyncButton.d.ts +22 -0
  13. package/lib/base/BaseAvatar/BaseAvatar.d.ts +28 -0
  14. package/lib/base/BaseBadge/BaseBadge.d.ts +31 -0
  15. package/lib/base/BaseBox/BaseBox.d.ts +35 -0
  16. package/lib/base/BaseBreadcrumbs/BaseBreadcrumbs.d.ts +26 -0
  17. package/lib/base/BaseButton/BaseButton.d.ts +38 -0
  18. package/lib/base/BaseCard/BaseCard.d.ts +109 -0
  19. package/lib/base/BaseCheckbox/BaseCheckbox.d.ts +23 -0
  20. package/lib/base/BaseChip/BaseChip.d.ts +38 -0
  21. package/lib/base/BaseColorPicker/BaseColorPicker.d.ts +77 -0
  22. package/lib/base/BaseDatePicker/BaseDatePicker.d.ts +76 -0
  23. package/lib/base/BaseDateRangePicker/BaseDateRangePicker.d.ts +47 -0
  24. package/lib/base/BaseDialog/BaseDialog.d.ts +54 -0
  25. package/lib/base/BaseDivider/BaseDivider.d.ts +24 -0
  26. package/lib/base/BaseFileUpload/BaseFileUpload.d.ts +57 -0
  27. package/lib/base/BaseIcon/BaseIcon.d.ts +23 -0
  28. package/lib/base/BaseInput/BaseInput.d.ts +34 -0
  29. package/lib/base/BaseLabel/BaseLabel.d.ts +21 -0
  30. package/lib/base/BaseLink/BaseLink.d.ts +29 -0
  31. package/lib/base/BaseMaskedInput/BaseMaskedInput.d.ts +31 -0
  32. package/lib/base/BaseMenu/BaseMenu.d.ts +70 -0
  33. package/lib/base/BaseNumberInput/BaseNumberInput.d.ts +31 -0
  34. package/lib/base/BaseOverlay/BaseOverlay.d.ts +39 -0
  35. package/lib/base/BaseOverlay/useOverlayDismiss.d.ts +15 -0
  36. package/lib/base/BaseOverlay/useOverlayPositioning.d.ts +13 -0
  37. package/lib/base/BasePopover/BasePopover.d.ts +40 -0
  38. package/lib/base/BaseProgressBar/BaseProgressBar.d.ts +27 -0
  39. package/lib/base/BaseRadio/BaseRadio.d.ts +20 -0
  40. package/lib/base/BaseRangeSlider/BaseRangeSlider.d.ts +31 -0
  41. package/lib/base/BaseRating/BaseRating.d.ts +25 -0
  42. package/lib/base/BaseSegmentedControl/BaseSegmentedControl.d.ts +26 -0
  43. package/lib/base/BaseSelect/BaseSelect.d.ts +83 -0
  44. package/lib/base/BaseSlider/BaseSlider.d.ts +29 -0
  45. package/lib/base/BaseStack/BaseStack.d.ts +26 -0
  46. package/lib/base/BaseTable/BaseTable.d.ts +97 -0
  47. package/lib/base/BaseText/BaseText.d.ts +19 -0
  48. package/lib/base/BaseTextarea/BaseTextarea.d.ts +37 -0
  49. package/lib/base/BaseTimePicker/BaseTimePicker.d.ts +55 -0
  50. package/lib/base/BaseTitle/BaseTitle.d.ts +22 -0
  51. package/lib/base/BaseToast/BaseToast.d.ts +35 -0
  52. package/lib/base/BaseToggle/BaseToggle.d.ts +22 -0
  53. package/lib/base/BaseTooltip/BaseTooltip.d.ts +27 -0
  54. package/lib/base/BaseTypography/BaseTypography.d.ts +30 -0
  55. package/lib/base/BaseValue/BaseValue.d.ts +20 -0
  56. package/lib/base/index.d.ts +65 -0
  57. package/lib/base/types.d.ts +9 -0
  58. package/lib/base/utils.d.ts +18 -0
  59. package/lib/composites/controls/ThresholdRamp/ThresholdRamp.d.ts +24 -0
  60. package/lib/composites/controls/ThresholdRamp/index.d.ts +2 -0
  61. package/lib/composites/controls/index.d.ts +1 -0
  62. package/lib/composites/dashboard/QuickConfigPanel/QuickConfigPanel.d.ts +14 -0
  63. package/lib/composites/dashboard/QuickConfigPanel/index.d.ts +2 -0
  64. package/lib/composites/dashboard/QuickConfigPanel/types.d.ts +38 -0
  65. package/lib/composites/data/DataTable.d.ts +61 -0
  66. package/lib/composites/data/PinToMetric/PinToMetric.d.ts +11 -0
  67. package/lib/composites/data/PinToMetric/index.d.ts +2 -0
  68. package/lib/composites/data/PinToMetric/types.d.ts +17 -0
  69. package/lib/composites/data/index.d.ts +4 -0
  70. package/lib/composites/index.d.ts +5 -0
  71. package/lib/composites/inputs/Autocomplete.d.ts +36 -0
  72. package/lib/composites/inputs/EntityPicker.d.ts +36 -0
  73. package/lib/composites/inputs/FilterChip.d.ts +29 -0
  74. package/lib/composites/inputs/MultiSelect.d.ts +38 -0
  75. package/lib/composites/inputs/index.d.ts +8 -0
  76. package/lib/composites/navigation/Stepper.d.ts +40 -0
  77. package/lib/composites/navigation/index.d.ts +2 -0
  78. package/lib/composites/overlay/Dropdown/Dropdown.d.ts +22 -0
  79. package/lib/composites/overlay/Dropdown/index.d.ts +2 -0
  80. package/lib/composites/overlay/FormDialog.d.ts +38 -0
  81. package/lib/composites/overlay/InlineNudge/InlineNudge.d.ts +26 -0
  82. package/lib/composites/overlay/InlineNudge/index.d.ts +12 -0
  83. package/lib/composites/overlay/MergePrompt/MergePrompt.d.ts +16 -0
  84. package/lib/composites/overlay/MergePrompt/index.d.ts +2 -0
  85. package/lib/composites/overlay/MergePrompt/types.d.ts +15 -0
  86. package/lib/composites/overlay/SplitButton/SplitButton.d.ts +27 -0
  87. package/lib/composites/overlay/SplitButton/index.d.ts +2 -0
  88. package/lib/composites/overlay/index.d.ts +6 -0
  89. package/lib/compositions/feedback/DestructiveModal.d.ts +1 -1
  90. package/lib/compositions/filters/OrderFilterBar.d.ts +35 -0
  91. package/lib/compositions/filters/index.d.ts +2 -0
  92. package/lib/compositions/forms/AddressGroup.d.ts +13 -1
  93. package/lib/compositions/forms/ContactForm.d.ts +31 -0
  94. package/lib/compositions/forms/CreditCardForm.d.ts +3 -1
  95. package/lib/compositions/forms/LoginForm.d.ts +3 -1
  96. package/lib/compositions/forms/PaymentForm.d.ts +50 -0
  97. package/lib/compositions/forms/RegistrationForm.d.ts +39 -0
  98. package/lib/compositions/forms/index.d.ts +3 -0
  99. package/lib/compositions/index.d.ts +3 -0
  100. package/lib/compositions/navigation/ImportWizard.d.ts +28 -0
  101. package/lib/compositions/navigation/index.d.ts +2 -0
  102. package/lib/compositions/panels/EntitySearchPanel.d.ts +41 -0
  103. package/lib/compositions/panels/ProfileCard.d.ts +34 -0
  104. package/lib/compositions/panels/index.d.ts +4 -0
  105. package/lib/containers/ContainerCard/ContainerCard.d.ts +13 -0
  106. package/lib/containers/ContainerDialog/ContainerDialog.d.ts +27 -0
  107. package/lib/containers/ContainerForm/ContainerForm.d.ts +45 -0
  108. package/lib/containers/ContainerFormField/ContainerFormField.d.ts +31 -0
  109. package/lib/containers/ContainerFormSection/ContainerFormSection.d.ts +13 -0
  110. package/lib/containers/ContainerPanel/ContainerPanel.d.ts +14 -0
  111. package/lib/containers/ContainerTable/ContainerTable.d.ts +12 -0
  112. package/lib/containers/ContainerToolbar/ContainerToolbar.d.ts +11 -0
  113. package/lib/containers/UIContext.d.ts +26 -0
  114. package/lib/containers/index.d.ts +18 -0
  115. package/lib/dictionary/border.d.ts +11 -0
  116. package/lib/dictionary/breakpoint.d.ts +12 -0
  117. package/lib/dictionary/color.d.ts +67 -0
  118. package/lib/dictionary/elevation.d.ts +16 -0
  119. package/lib/dictionary/index.d.ts +14 -0
  120. package/lib/dictionary/motion.d.ts +13 -0
  121. package/lib/dictionary/opacity.d.ts +11 -0
  122. package/lib/dictionary/radius.d.ts +14 -0
  123. package/lib/dictionary/spacing.d.ts +18 -0
  124. package/lib/dictionary/typography.d.ts +25 -0
  125. package/lib/dictionary/z-index.d.ts +13 -0
  126. package/lib/facade/composites.d.ts +56 -0
  127. package/lib/facade/compositions.d.ts +27 -0
  128. package/lib/facade/containers.d.ts +8 -0
  129. package/lib/facade/data-display.d.ts +41 -0
  130. package/lib/facade/display.d.ts +50 -0
  131. package/lib/facade/feedback.d.ts +6 -0
  132. package/lib/facade/index.d.ts +17 -0
  133. package/lib/facade/inputs.d.ts +43 -0
  134. package/lib/facade/layout.d.ts +8 -0
  135. package/lib/facade/overlay.d.ts +26 -0
  136. package/lib/facade/typography.d.ts +12 -0
  137. package/lib/facade/wrappers.d.ts +26 -0
  138. package/lib/presets/PresetAccordion/PresetAccordion.d.ts +21 -0
  139. package/lib/presets/PresetAlert/PresetAlert.d.ts +17 -0
  140. package/lib/presets/PresetAsyncButton/PresetAsyncButton.d.ts +22 -0
  141. package/lib/presets/PresetAsyncLoader/PresetAsyncLoader.d.ts +6 -0
  142. package/lib/presets/PresetAvatar/PresetAvatar.d.ts +18 -0
  143. package/lib/presets/PresetBadge/PresetBadge.d.ts +15 -0
  144. package/lib/presets/PresetBreadcrumbs/PresetBreadcrumbs.d.ts +15 -0
  145. package/lib/presets/PresetButton/PresetButton.d.ts +27 -0
  146. package/lib/presets/PresetButtonGroup/PresetButtonGroup.d.ts +6 -0
  147. package/lib/presets/PresetCard/PresetCard.d.ts +45 -0
  148. package/lib/presets/PresetCheckbox/PresetCheckbox.d.ts +23 -0
  149. package/lib/presets/PresetCheckboxGroup/PresetCheckboxGroup.d.ts +6 -0
  150. package/lib/presets/PresetChip/PresetChip.d.ts +22 -0
  151. package/lib/presets/PresetColorPicker/PresetColorPicker.d.ts +22 -0
  152. package/lib/presets/PresetDatePicker/PresetDatePicker.d.ts +29 -0
  153. package/lib/presets/PresetDateRangePicker/PresetDateRangePicker.d.ts +37 -0
  154. package/lib/presets/PresetDialog/PresetDialog.d.ts +46 -0
  155. package/lib/presets/PresetDivider/PresetDivider.d.ts +13 -0
  156. package/lib/presets/PresetDropdown/PresetDropdown.d.ts +6 -0
  157. package/lib/presets/PresetFileUpload/PresetFileUpload.d.ts +35 -0
  158. package/lib/presets/PresetForm/PresetForm.d.ts +6 -0
  159. package/lib/presets/PresetFormField/PresetFormField.d.ts +6 -0
  160. package/lib/presets/PresetInput/PresetInput.d.ts +24 -0
  161. package/lib/presets/PresetInputGroup/PresetInputGroup.d.ts +6 -0
  162. package/lib/presets/PresetLabel/PresetLabel.d.ts +18 -0
  163. package/lib/presets/PresetLink/PresetLink.d.ts +21 -0
  164. package/lib/presets/PresetMaskedInput/PresetMaskedInput.d.ts +41 -0
  165. package/lib/presets/PresetMenu/PresetMenu.d.ts +33 -0
  166. package/lib/presets/PresetNumberInput/PresetNumberInput.d.ts +26 -0
  167. package/lib/presets/PresetPopover/PresetPopover.d.ts +17 -0
  168. package/lib/presets/PresetProgressBar/PresetProgressBar.d.ts +19 -0
  169. package/lib/presets/PresetRadio/PresetRadio.d.ts +21 -0
  170. package/lib/presets/PresetRadioGroup/PresetRadioGroup.d.ts +6 -0
  171. package/lib/presets/PresetRangeSlider/PresetRangeSlider.d.ts +30 -0
  172. package/lib/presets/PresetRating/PresetRating.d.ts +19 -0
  173. package/lib/presets/PresetSegmentedControl/PresetSegmentedControl.d.ts +28 -0
  174. package/lib/presets/PresetSelect/PresetSelect.d.ts +63 -0
  175. package/lib/presets/PresetSlider/PresetSlider.d.ts +29 -0
  176. package/lib/presets/PresetSplitButton/PresetSplitButton.d.ts +6 -0
  177. package/lib/presets/PresetSwatchRow/PresetSwatchRow.d.ts +28 -0
  178. package/lib/presets/PresetSwatchRow/index.d.ts +2 -0
  179. package/lib/presets/PresetText/PresetText.d.ts +17 -0
  180. package/lib/presets/PresetTextarea/PresetTextarea.d.ts +25 -0
  181. package/lib/presets/PresetTimePicker/PresetTimePicker.d.ts +27 -0
  182. package/lib/presets/PresetTitle/PresetTitle.d.ts +19 -0
  183. package/lib/presets/PresetToast/PresetToast.d.ts +19 -0
  184. package/lib/presets/PresetToggle/PresetToggle.d.ts +21 -0
  185. package/lib/presets/PresetTooltip/PresetTooltip.d.ts +20 -0
  186. package/lib/presets/PresetTransition/PresetTransition.d.ts +6 -0
  187. package/lib/presets/PresetValue/PresetValue.d.ts +15 -0
  188. package/lib/presets/createPreset.d.ts +64 -0
  189. package/lib/presets/index.d.ts +86 -0
  190. package/lib/presets/types.d.ts +13 -0
  191. package/lib/primitives/Accordion.d.ts +12 -102
  192. package/lib/primitives/AsyncLoader.d.ts +4 -39
  193. package/lib/primitives/Badge.d.ts +5 -40
  194. package/lib/primitives/Button.d.ts +4 -71
  195. package/lib/primitives/ButtonGroup.d.ts +4 -70
  196. package/lib/primitives/Card.d.ts +20 -138
  197. package/lib/primitives/Checkbox.d.ts +4 -68
  198. package/lib/primitives/CheckboxGroup.d.ts +4 -160
  199. package/lib/primitives/Chip.d.ts +5 -66
  200. package/lib/primitives/ColorPicker.d.ts +4 -80
  201. package/lib/primitives/DatePicker.d.ts +4 -100
  202. package/lib/primitives/DateRangePicker.d.ts +4 -107
  203. package/lib/primitives/Dropdown.d.ts +4 -63
  204. package/lib/primitives/FileUpload.d.ts +4 -107
  205. package/lib/primitives/Form.d.ts +4 -117
  206. package/lib/primitives/FormField.d.ts +4 -67
  207. package/lib/primitives/Input.d.ts +4 -87
  208. package/lib/primitives/InputGroup.d.ts +4 -57
  209. package/lib/primitives/Link.d.ts +4 -67
  210. package/lib/primitives/MaskedInput.d.ts +4 -93
  211. package/lib/primitives/Menu.d.ts +12 -131
  212. package/lib/primitives/NumberInput.d.ts +4 -79
  213. package/lib/primitives/Radio.d.ts +4 -58
  214. package/lib/primitives/RadioGroup.d.ts +4 -161
  215. package/lib/primitives/RangeSlider.d.ts +4 -103
  216. package/lib/primitives/Rating.d.ts +4 -113
  217. package/lib/primitives/SegmentedControl.d.ts +4 -94
  218. package/lib/primitives/Select.d.ts +5 -203
  219. package/lib/primitives/Slider.d.ts +4 -109
  220. package/lib/primitives/SplitButton.d.ts +4 -82
  221. package/lib/primitives/Textarea.d.ts +4 -57
  222. package/lib/primitives/TimePicker.d.ts +4 -91
  223. package/lib/primitives/Toggle.d.ts +4 -66
  224. package/lib/primitives/Tooltip.d.ts +6 -86
  225. package/lib/primitives/Transition.d.ts +4 -105
  226. package/lib/primitives/dashboard/MetricCard/CardBack.d.ts +17 -2
  227. package/lib/primitives/dashboard/MetricCard/CardShell.d.ts +1 -1
  228. package/lib/primitives/dashboard/MetricCard/EdgeHoverHandle.d.ts +20 -0
  229. package/lib/primitives/dashboard/MetricCard/GhostPreview.d.ts +24 -0
  230. package/lib/primitives/dashboard/MetricCard/GutterActions.d.ts +12 -2
  231. package/lib/primitives/dashboard/MetricCard/MetricCard.d.ts +0 -28
  232. package/lib/primitives/dashboard/MetricCard/StatusModeCard.d.ts +5 -0
  233. package/lib/primitives/dashboard/MetricCard/StatusSlotChipMenu.d.ts +28 -0
  234. package/lib/primitives/dashboard/MetricCard/flipAndStage/FlipAndStageProvider.d.ts +29 -0
  235. package/lib/primitives/dashboard/MetricCard/flipAndStage/index.d.ts +15 -0
  236. package/lib/primitives/dashboard/MetricCard/flipAndStage/types.d.ts +83 -0
  237. package/lib/primitives/dashboard/MetricCard/flipAndStage/useFlipAndStage.d.ts +10 -0
  238. package/lib/primitives/dashboard/MetricCard/index.d.ts +10 -0
  239. package/lib/primitives/dashboard/MetricCard/types.d.ts +48 -4
  240. package/lib/primitives/dashboard/MetricCard/useEdgeHoverResize.d.ts +52 -0
  241. package/lib/primitives/dashboard/MetricCard/useSlotCapacity.d.ts +12 -0
  242. package/lib/primitives/dashboard/MetricCardGrid/MetricCardGrid.d.ts +21 -19
  243. package/lib/primitives/dashboard/MetricCardGrid/types.d.ts +8 -1
  244. package/lib/primitives/dashboard/MetricGroupContainer/MetricGroupContainer.d.ts +5 -0
  245. package/lib/primitives/dashboard/MetricGroupContainer/__tests__/fixtures.d.ts +13 -0
  246. package/lib/primitives/dashboard/MetricGroupContainer/index.d.ts +2 -0
  247. package/lib/primitives/dashboard/MetricGroupContainer/types.d.ts +34 -0
  248. package/lib/primitives/dashboard/PageChip/PageChip.d.ts +27 -0
  249. package/lib/primitives/dashboard/PageChip/PageDropdown.d.ts +29 -0
  250. package/lib/primitives/dashboard/PageChip/index.d.ts +3 -0
  251. package/lib/primitives/dashboard/PageChip/types.d.ts +36 -0
  252. package/lib/primitives/dashboard/TimeFrame/SimpleSelector.d.ts +9 -0
  253. package/lib/primitives/dashboard/TimeFrame/index.d.ts +2 -0
  254. package/lib/primitives/dashboard/TimeFrame/types.d.ts +8 -0
  255. package/lib/primitives/dashboard/UnifiedContextMenu/types.d.ts +2 -0
  256. package/lib/primitives/dashboard/index.d.ts +2 -0
  257. package/lib/wrappers/Actionable/Actionable.d.ts +17 -0
  258. package/lib/wrappers/AsyncLoader/AsyncLoader.d.ts +13 -0
  259. package/lib/wrappers/ButtonGroup/ButtonGroup.d.ts +23 -0
  260. package/lib/wrappers/CheckboxGroup/CheckboxGroup.d.ts +52 -0
  261. package/lib/wrappers/Dismissible/Dismissible.d.ts +24 -0
  262. package/lib/wrappers/Expandable/Expandable.d.ts +23 -0
  263. package/lib/wrappers/InputGroup/InputGroup.d.ts +20 -0
  264. package/lib/wrappers/RadioGroup/RadioGroup.d.ts +52 -0
  265. package/lib/wrappers/Selectable/Selectable.d.ts +19 -0
  266. package/lib/wrappers/Sortable/Sortable.d.ts +27 -0
  267. package/lib/wrappers/SortableZones/SortableZones.d.ts +32 -0
  268. package/lib/wrappers/SortableZones/index.d.ts +4 -0
  269. package/lib/wrappers/SortableZones/useSortableZones.d.ts +66 -0
  270. package/lib/wrappers/Transition/Transition.d.ts +49 -0
  271. package/lib/wrappers/index.d.ts +25 -0
  272. package/lib/wrappers/utils.d.ts +10 -0
  273. package/package.json +36 -5
  274. package/ui.css +1 -0
  275. package/index.css +0 -1
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Card Context-Container. Re-exports PresetCard which now includes UIContext propagation
3
+ * in its Header, Body, and Footer sub-components.
4
+ *
5
+ * Usage:
6
+ * <Card variant="outlined">
7
+ * <Card.Header>Title</Card.Header> // children see region='card-header'
8
+ * <Card.Body>Content</Card.Body> // children see region='card-body'
9
+ * <Card.Footer>Actions</Card.Footer> // children see region='card-footer'
10
+ * </Card>
11
+ */
12
+ export { PresetCard as ContainerCard, PresetCardHeader as ContainerCardHeader, PresetCardBody as ContainerCardBody, PresetCardFooter as ContainerCardFooter, PresetCardMedia as ContainerCardMedia, PresetCardTitle as ContainerCardTitle, PresetCardSubtitle as ContainerCardSubtitle, PresetCardActions as ContainerCardActions, } from '../../presets/PresetCard/PresetCard';
13
+ export type { PresetCardProps as ContainerCardProps, PresetCardVariant as ContainerCardVariant, } from '../../presets/PresetCard/PresetCard';
@@ -0,0 +1,27 @@
1
+ import { default as React } from 'react';
2
+ export interface ContainerDialogProps {
3
+ open: boolean;
4
+ onDismiss?: () => void;
5
+ size?: 'sm' | 'md' | 'lg' | 'fullscreen';
6
+ children?: React.ReactNode;
7
+ }
8
+ /**
9
+ * Dialog Context-Container. Modal overlay with Header/Body/Actions sub-components.
10
+ * Children inside sub-components automatically receive UIContext region values.
11
+ */
12
+ export declare function ContainerDialog({ open, onDismiss, size, children }: ContainerDialogProps): import("react/jsx-runtime").JSX.Element;
13
+ export declare namespace ContainerDialog {
14
+ var displayName: string;
15
+ }
16
+ export interface ContainerDialogHeaderProps {
17
+ children?: React.ReactNode;
18
+ }
19
+ export declare const ContainerDialogHeader: React.ForwardRefExoticComponent<ContainerDialogHeaderProps & Omit<React.HTMLAttributes<HTMLDivElement>, "style" | "className"> & React.RefAttributes<HTMLDivElement>>;
20
+ export interface ContainerDialogBodyProps {
21
+ children?: React.ReactNode;
22
+ }
23
+ export declare const ContainerDialogBody: React.ForwardRefExoticComponent<ContainerDialogBodyProps & Omit<React.HTMLAttributes<HTMLDivElement>, "style" | "className"> & React.RefAttributes<HTMLDivElement>>;
24
+ export interface ContainerDialogActionsProps {
25
+ children?: React.ReactNode;
26
+ }
27
+ export declare const ContainerDialogActions: React.ForwardRefExoticComponent<ContainerDialogActionsProps & Omit<React.HTMLAttributes<HTMLDivElement>, "style" | "className"> & React.RefAttributes<HTMLDivElement>>;
@@ -0,0 +1,45 @@
1
+ import { default as React } from 'react';
2
+ export interface FormErrors {
3
+ [key: string]: string | undefined;
4
+ }
5
+ export interface FormTouched {
6
+ [key: string]: boolean;
7
+ }
8
+ export interface FormContextValue {
9
+ values: Record<string, unknown>;
10
+ errors: FormErrors;
11
+ touched: FormTouched;
12
+ isSubmitting: boolean;
13
+ isValid: boolean;
14
+ setFieldValue: (name: string, value: unknown) => void;
15
+ setFieldError: (name: string, error: string | undefined) => void;
16
+ setFieldTouched: (name: string, touched?: boolean) => void;
17
+ getFieldProps: (name: string) => {
18
+ value: unknown;
19
+ onChange: (value: unknown) => void;
20
+ onBlur: () => void;
21
+ name: string;
22
+ error: string | undefined;
23
+ touched: boolean;
24
+ };
25
+ }
26
+ export declare function useFormContext(): FormContextValue;
27
+ export interface ContainerFormProps<T extends Record<string, unknown> = Record<string, unknown>> {
28
+ initialValues: T;
29
+ validate?: (values: T) => FormErrors | Promise<FormErrors>;
30
+ onSubmit: (values: T) => void | Promise<void>;
31
+ validateOnChange?: boolean;
32
+ validateOnBlur?: boolean;
33
+ preventDefault?: boolean;
34
+ children: React.ReactNode | ((context: FormContextValue) => React.ReactNode);
35
+ }
36
+ /**
37
+ * ContainerForm -- Container tier. Self-contained form with validation and state management.
38
+ * Provides FormContext to child FormFields. Strips className/style from consumer API.
39
+ */
40
+ export declare function ContainerForm<T extends Record<string, unknown>>(props: ContainerFormProps<T>): import("react/jsx-runtime").JSX.Element;
41
+ export declare namespace ContainerForm {
42
+ var displayName: string;
43
+ }
44
+ export { ContainerForm as PresetForm };
45
+ export type { ContainerFormProps as PresetFormProps };
@@ -0,0 +1,31 @@
1
+ import { default as React } from 'react';
2
+ interface FormControlProps {
3
+ id?: string;
4
+ name?: string;
5
+ value?: unknown;
6
+ onChange?: (value: unknown) => void;
7
+ onBlur?: (event: React.FocusEvent) => void;
8
+ status?: string;
9
+ 'aria-describedby'?: string;
10
+ 'aria-invalid'?: boolean;
11
+ 'aria-required'?: boolean;
12
+ }
13
+ export interface ContainerFormFieldProps {
14
+ name: string;
15
+ label?: React.ReactNode;
16
+ helperText?: React.ReactNode;
17
+ required?: boolean;
18
+ labelPosition?: 'top' | 'left' | 'right';
19
+ hideLabel?: boolean;
20
+ children: React.ReactElement<FormControlProps>;
21
+ }
22
+ /**
23
+ * ContainerFormField -- Container tier. Self-contained form field with label/error/helper.
24
+ * Wires into ContainerForm's FormContext. Strips className/style from consumer API.
25
+ */
26
+ export declare function ContainerFormField({ name, label, helperText, required, labelPosition, hideLabel, children, ...rest }: ContainerFormFieldProps): import("react/jsx-runtime").JSX.Element;
27
+ export declare namespace ContainerFormField {
28
+ var displayName: string;
29
+ }
30
+ export { ContainerFormField as PresetFormField };
31
+ export type { ContainerFormFieldProps as PresetFormFieldProps };
@@ -0,0 +1,13 @@
1
+ import { default as React } from 'react';
2
+ import { UIDensity } from '../UIContext';
3
+ export interface ContainerFormSectionProps {
4
+ legend?: string;
5
+ description?: string;
6
+ density?: UIDensity;
7
+ children?: React.ReactNode;
8
+ }
9
+ /**
10
+ * Form.Section Context-Container. Groups form fields within a fieldset.
11
+ * Sets UIContext region='form-section'.
12
+ */
13
+ export declare const ContainerFormSection: React.ForwardRefExoticComponent<ContainerFormSectionProps & Omit<React.FieldsetHTMLAttributes<HTMLFieldSetElement>, "style" | "className"> & React.RefAttributes<HTMLFieldSetElement>>;
@@ -0,0 +1,14 @@
1
+ import { default as React } from 'react';
2
+ import { UIDensity } from '../UIContext';
3
+ export interface ContainerPanelProps {
4
+ title?: React.ReactNode;
5
+ collapsed?: boolean;
6
+ onToggle?: () => void;
7
+ density?: UIDensity;
8
+ children?: React.ReactNode;
9
+ }
10
+ /**
11
+ * Panel Context-Container. Collapsible content region.
12
+ * Sets UIContext region='panel'.
13
+ */
14
+ export declare const ContainerPanel: React.ForwardRefExoticComponent<ContainerPanelProps & Omit<React.HTMLAttributes<HTMLDivElement>, "style" | "title" | "className"> & React.RefAttributes<HTMLDivElement>>;
@@ -0,0 +1,12 @@
1
+ import { default as React } from 'react';
2
+ import { UIDensity } from '../UIContext';
3
+ export interface ContainerTableProps {
4
+ density?: UIDensity;
5
+ children?: React.ReactNode;
6
+ }
7
+ /**
8
+ * Table Context-Container. Provides compact typography context for table cells.
9
+ * Sets UIContext region='table', density defaults to 'compact'.
10
+ * Wraps existing content -- does NOT replace BaseTable.
11
+ */
12
+ export declare const ContainerTable: React.ForwardRefExoticComponent<ContainerTableProps & Omit<React.HTMLAttributes<HTMLDivElement>, "style" | "className"> & React.RefAttributes<HTMLDivElement>>;
@@ -0,0 +1,11 @@
1
+ import { default as React } from 'react';
2
+ import { UIDensity } from '../UIContext';
3
+ export interface ContainerToolbarProps {
4
+ density?: UIDensity;
5
+ children?: React.ReactNode;
6
+ }
7
+ /**
8
+ * Toolbar Context-Container. Compact layout context for action buttons and controls.
9
+ * Sets UIContext region='toolbar', density defaults to 'compact'.
10
+ */
11
+ export declare const ContainerToolbar: React.ForwardRefExoticComponent<ContainerToolbarProps & Omit<React.HTMLAttributes<HTMLDivElement>, "style" | "className"> & React.RefAttributes<HTMLDivElement>>;
@@ -0,0 +1,26 @@
1
+ import { default as React } from 'react';
2
+ export type UIRegion = 'card-header' | 'card-body' | 'card-footer' | 'dialog-header' | 'dialog-body' | 'dialog-actions' | 'panel' | 'toolbar' | 'form-section' | 'table';
3
+ export type UIDensity = 'default' | 'compact' | 'comfortable';
4
+ export interface UIContextValue {
5
+ region: UIRegion | null;
6
+ density: UIDensity;
7
+ }
8
+ export declare const UIContext: React.Context<UIContextValue>;
9
+ /**
10
+ * Read the nearest UIContext value. Returns { region, density }.
11
+ * region is null when not inside any Context-Container.
12
+ */
13
+ export declare function useUIContext(): UIContextValue;
14
+ export interface UIContextProviderProps {
15
+ region: UIRegion;
16
+ density?: UIDensity;
17
+ children: React.ReactNode;
18
+ }
19
+ /**
20
+ * Sets UIContext for all descendants. Nearest-wins: fully replaces parent context.
21
+ * Also renders a wrapper div with data-region and data-density attributes for SCSS targeting.
22
+ */
23
+ export declare function UIContextProvider({ region, density, children }: UIContextProviderProps): React.FunctionComponentElement<React.ProviderProps<UIContextValue>>;
24
+ export declare namespace UIContextProvider {
25
+ var displayName: string;
26
+ }
@@ -0,0 +1,18 @@
1
+ export { UIContext, UIContextProvider, useUIContext } from './UIContext';
2
+ export type { UIContextValue, UIRegion, UIDensity, UIContextProviderProps } from './UIContext';
3
+ export { ContainerCard, ContainerCardHeader, ContainerCardBody, ContainerCardFooter, ContainerCardMedia, ContainerCardTitle, ContainerCardSubtitle, ContainerCardActions, } from './ContainerCard/ContainerCard';
4
+ export type { ContainerCardProps, ContainerCardVariant } from './ContainerCard/ContainerCard';
5
+ export { ContainerDialog, ContainerDialogHeader, ContainerDialogBody, ContainerDialogActions, } from './ContainerDialog/ContainerDialog';
6
+ export type { ContainerDialogProps, ContainerDialogHeaderProps, ContainerDialogBodyProps, ContainerDialogActionsProps, } from './ContainerDialog/ContainerDialog';
7
+ export { ContainerPanel } from './ContainerPanel/ContainerPanel';
8
+ export type { ContainerPanelProps } from './ContainerPanel/ContainerPanel';
9
+ export { ContainerToolbar } from './ContainerToolbar/ContainerToolbar';
10
+ export type { ContainerToolbarProps } from './ContainerToolbar/ContainerToolbar';
11
+ export { ContainerFormSection } from './ContainerFormSection/ContainerFormSection';
12
+ export type { ContainerFormSectionProps } from './ContainerFormSection/ContainerFormSection';
13
+ export { ContainerTable } from './ContainerTable/ContainerTable';
14
+ export type { ContainerTableProps } from './ContainerTable/ContainerTable';
15
+ export { ContainerForm, useFormContext } from './ContainerForm/ContainerForm';
16
+ export type { ContainerFormProps, FormContextValue, FormErrors, FormTouched } from './ContainerForm/ContainerForm';
17
+ export { ContainerFormField } from './ContainerFormField/ContainerFormField';
18
+ export type { ContainerFormFieldProps } from './ContainerFormField/ContainerFormField';
@@ -0,0 +1,11 @@
1
+ /**
2
+ * @internal
3
+ * Border Dictionary — CSS var references for border tokens.
4
+ */
5
+ export declare const Border: {
6
+ readonly WidthThin: "var(--gloss-border-width-thin)";
7
+ readonly WidthMedium: "var(--gloss-border-width-medium)";
8
+ readonly WidthThick: "var(--gloss-border-width-thick)";
9
+ readonly StyleDefault: "var(--gloss-border-style-default)";
10
+ };
11
+ export type BorderValue = (typeof Border)[keyof typeof Border];
@@ -0,0 +1,12 @@
1
+ /**
2
+ * @internal
3
+ * Breakpoint Dictionary — CSS var references for responsive breakpoint tokens.
4
+ */
5
+ export declare const Breakpoint: {
6
+ readonly Sm: "var(--gloss-breakpoint-sm)";
7
+ readonly Md: "var(--gloss-breakpoint-md)";
8
+ readonly Lg: "var(--gloss-breakpoint-lg)";
9
+ readonly Xl: "var(--gloss-breakpoint-xl)";
10
+ readonly '2xl': "var(--gloss-breakpoint-2xl)";
11
+ };
12
+ export type BreakpointValue = (typeof Breakpoint)[keyof typeof Breakpoint];
@@ -0,0 +1,67 @@
1
+ /**
2
+ * @internal
3
+ * Color Dictionary — CSS var references for all color tokens.
4
+ */
5
+ export declare const Color: {
6
+ readonly BrandPrimary: "var(--gloss-color-brand-primary)";
7
+ readonly BrandPrimaryHover: "var(--gloss-color-brand-primary-hover)";
8
+ readonly BrandPrimaryActive: "var(--gloss-color-brand-primary-active)";
9
+ readonly TextPrimary: "var(--gloss-color-text-primary)";
10
+ readonly TextSecondary: "var(--gloss-color-text-secondary)";
11
+ readonly TextTertiary: "var(--gloss-color-text-tertiary)";
12
+ readonly TextInverse: "var(--gloss-color-text-inverse)";
13
+ readonly TextError: "var(--gloss-color-text-error)";
14
+ readonly TextSuccess: "var(--gloss-color-text-success)";
15
+ readonly TextLink: "var(--gloss-color-text-link)";
16
+ readonly BgPage: "var(--gloss-color-bg-page)";
17
+ readonly BgSurface: "var(--gloss-color-bg-surface)";
18
+ readonly BgMuted: "var(--gloss-color-bg-muted)";
19
+ readonly BgHover: "var(--gloss-color-bg-hover)";
20
+ readonly BgDisabled: "var(--gloss-color-bg-disabled)";
21
+ readonly BgError: "var(--gloss-color-bg-error)";
22
+ readonly BgSecondary: "var(--gloss-color-bg-secondary)";
23
+ readonly BgSidebar: "var(--gloss-color-bg-sidebar)";
24
+ readonly BorderDefault: "var(--gloss-color-border-default)";
25
+ readonly BorderHover: "var(--gloss-color-border-hover)";
26
+ readonly BorderFocus: "var(--gloss-color-border-focus)";
27
+ readonly BorderSuccess: "var(--gloss-color-border-success)";
28
+ readonly BorderError: "var(--gloss-color-border-error)";
29
+ readonly Gray50: "var(--gloss-color-gray-50)";
30
+ readonly Gray100: "var(--gloss-color-gray-100)";
31
+ readonly Gray200: "var(--gloss-color-gray-200)";
32
+ readonly Gray300: "var(--gloss-color-gray-300)";
33
+ readonly Gray400: "var(--gloss-color-gray-400)";
34
+ readonly Gray500: "var(--gloss-color-gray-500)";
35
+ readonly Gray600: "var(--gloss-color-gray-600)";
36
+ readonly Gray700: "var(--gloss-color-gray-700)";
37
+ readonly Gray800: "var(--gloss-color-gray-800)";
38
+ readonly Gray900: "var(--gloss-color-gray-900)";
39
+ readonly Blue50: "var(--gloss-color-blue-50)";
40
+ readonly Blue100: "var(--gloss-color-blue-100)";
41
+ readonly Blue200: "var(--gloss-color-blue-200)";
42
+ readonly Blue300: "var(--gloss-color-blue-300)";
43
+ readonly Blue400: "var(--gloss-color-blue-400)";
44
+ readonly Blue500: "var(--gloss-color-blue-500)";
45
+ readonly Blue600: "var(--gloss-color-blue-600)";
46
+ readonly Blue700: "var(--gloss-color-blue-700)";
47
+ readonly Blue800: "var(--gloss-color-blue-800)";
48
+ readonly Blue900: "var(--gloss-color-blue-900)";
49
+ readonly Green50: "var(--gloss-color-green-50)";
50
+ readonly Green100: "var(--gloss-color-green-100)";
51
+ readonly Green500: "var(--gloss-color-green-500)";
52
+ readonly Green600: "var(--gloss-color-green-600)";
53
+ readonly Green700: "var(--gloss-color-green-700)";
54
+ readonly Red50: "var(--gloss-color-red-50)";
55
+ readonly Red100: "var(--gloss-color-red-100)";
56
+ readonly Red200: "var(--gloss-color-red-200)";
57
+ readonly Red400: "var(--gloss-color-red-400)";
58
+ readonly Red500: "var(--gloss-color-red-500)";
59
+ readonly Red600: "var(--gloss-color-red-600)";
60
+ readonly Red700: "var(--gloss-color-red-700)";
61
+ readonly Amber100: "var(--gloss-color-amber-100)";
62
+ readonly Amber200: "var(--gloss-color-amber-200)";
63
+ readonly Amber500: "var(--gloss-color-amber-500)";
64
+ readonly Amber600: "var(--gloss-color-amber-600)";
65
+ readonly White: "var(--gloss-color-white)";
66
+ };
67
+ export type ColorValue = (typeof Color)[keyof typeof Color];
@@ -0,0 +1,16 @@
1
+ /**
2
+ * @internal
3
+ * Elevation Dictionary — CSS var references for shadow/elevation tokens.
4
+ */
5
+ export declare const Elevation: {
6
+ readonly Card: "var(--gloss-elevation-card)";
7
+ readonly ButtonDefault: "var(--gloss-elevation-button-default)";
8
+ readonly ButtonHover: "var(--gloss-elevation-button-hover)";
9
+ readonly ButtonActive: "var(--gloss-elevation-button-active)";
10
+ readonly Hover: "var(--gloss-elevation-hover)";
11
+ readonly InputDefault: "var(--gloss-elevation-input-default)";
12
+ readonly InputFocus: "var(--gloss-elevation-input-focus)";
13
+ readonly Sidebar: "var(--gloss-elevation-sidebar)";
14
+ readonly None: "none";
15
+ };
16
+ export type ElevationValue = (typeof Elevation)[keyof typeof Elevation];
@@ -0,0 +1,14 @@
1
+ /**
2
+ * @internal
3
+ * Design Dictionary — TypeScript references to --gloss-* CSS custom properties.
4
+ */
5
+ export { Color, type ColorValue } from './color';
6
+ export { Spacing, type SpacingValue } from './spacing';
7
+ export { Typography, type TypographyValue } from './typography';
8
+ export { Elevation, type ElevationValue } from './elevation';
9
+ export { Radius, type RadiusValue } from './radius';
10
+ export { Motion, type MotionValue } from './motion';
11
+ export { Breakpoint, type BreakpointValue } from './breakpoint';
12
+ export { ZIndex, type ZIndexValue } from './z-index';
13
+ export { Opacity, type OpacityValue } from './opacity';
14
+ export { Border, type BorderValue } from './border';
@@ -0,0 +1,13 @@
1
+ /**
2
+ * @internal
3
+ * Motion Dictionary — CSS var references for animation/transition tokens.
4
+ */
5
+ export declare const Motion: {
6
+ readonly DurationFast: "var(--gloss-motion-duration-fast)";
7
+ readonly DurationNormal: "var(--gloss-motion-duration-normal)";
8
+ readonly DurationSlow: "var(--gloss-motion-duration-slow)";
9
+ readonly EasingDefault: "var(--gloss-motion-easing-default)";
10
+ readonly EasingEnter: "var(--gloss-motion-easing-enter)";
11
+ readonly EasingExit: "var(--gloss-motion-easing-exit)";
12
+ };
13
+ export type MotionValue = (typeof Motion)[keyof typeof Motion];
@@ -0,0 +1,11 @@
1
+ /**
2
+ * @internal
3
+ * Opacity Dictionary — CSS var references for opacity tokens.
4
+ */
5
+ export declare const Opacity: {
6
+ readonly Disabled: "var(--gloss-opacity-disabled)";
7
+ readonly Hover: "var(--gloss-opacity-hover)";
8
+ readonly Focus: "var(--gloss-opacity-focus)";
9
+ readonly Overlay: "var(--gloss-opacity-overlay)";
10
+ };
11
+ export type OpacityValue = (typeof Opacity)[keyof typeof Opacity];
@@ -0,0 +1,14 @@
1
+ /**
2
+ * @internal
3
+ * Radius Dictionary — CSS var references for border-radius tokens.
4
+ */
5
+ export declare const Radius: {
6
+ readonly None: "0";
7
+ readonly Xs: "var(--gloss-radius-xs)";
8
+ readonly Sm: "var(--gloss-radius-sm)";
9
+ readonly Md: "var(--gloss-radius-md)";
10
+ readonly Lg: "var(--gloss-radius-lg)";
11
+ readonly Xl: "var(--gloss-radius-xl)";
12
+ readonly Full: "var(--gloss-radius-full)";
13
+ };
14
+ export type RadiusValue = (typeof Radius)[keyof typeof Radius];
@@ -0,0 +1,18 @@
1
+ /**
2
+ * @internal
3
+ * Spacing Dictionary — CSS var references for spacing tokens.
4
+ */
5
+ export declare const Spacing: {
6
+ readonly None: "0";
7
+ readonly Xs: "var(--gloss-spacing-1)";
8
+ readonly Sm: "var(--gloss-spacing-2)";
9
+ readonly Md: "var(--gloss-spacing-3)";
10
+ readonly Lg: "var(--gloss-spacing-4)";
11
+ readonly Xl: "var(--gloss-spacing-5)";
12
+ readonly '2xl': "var(--gloss-spacing-6)";
13
+ readonly '3xl': "var(--gloss-spacing-8)";
14
+ readonly '4xl': "var(--gloss-spacing-10)";
15
+ readonly '5xl': "var(--gloss-spacing-12)";
16
+ readonly '6xl': "var(--gloss-spacing-16)";
17
+ };
18
+ export type SpacingValue = (typeof Spacing)[keyof typeof Spacing];
@@ -0,0 +1,25 @@
1
+ /**
2
+ * @internal
3
+ * Typography Dictionary — CSS var references for font tokens and raw values for weights/leading.
4
+ */
5
+ export declare const Typography: {
6
+ readonly FontDisplay: "var(--gloss-font-display)";
7
+ readonly FontBody: "var(--gloss-font-body)";
8
+ readonly FontMono: "var(--gloss-font-mono)";
9
+ readonly TextXs: "var(--gloss-text-xs)";
10
+ readonly TextSm: "var(--gloss-text-sm)";
11
+ readonly TextBase: "var(--gloss-text-base)";
12
+ readonly TextLg: "var(--gloss-text-lg)";
13
+ readonly TextXl: "var(--gloss-text-xl)";
14
+ readonly Text2xl: "var(--gloss-text-2xl)";
15
+ readonly Text3xl: "var(--gloss-text-3xl)";
16
+ readonly Text4xl: "var(--gloss-text-4xl)";
17
+ readonly LeadingTight: "1.25";
18
+ readonly LeadingNormal: "1.5";
19
+ readonly LeadingRelaxed: "1.75";
20
+ readonly WeightNormal: "400";
21
+ readonly WeightMedium: "500";
22
+ readonly WeightSemibold: "600";
23
+ readonly WeightBold: "700";
24
+ };
25
+ export type TypographyValue = (typeof Typography)[keyof typeof Typography];
@@ -0,0 +1,13 @@
1
+ /**
2
+ * @internal
3
+ * ZIndex Dictionary — CSS var references for z-index layer tokens.
4
+ */
5
+ export declare const ZIndex: {
6
+ readonly Dropdown: "var(--gloss-z-dropdown)";
7
+ readonly Sticky: "var(--gloss-z-sticky)";
8
+ readonly Overlay: "var(--gloss-z-overlay)";
9
+ readonly Modal: "var(--gloss-z-modal)";
10
+ readonly Popover: "var(--gloss-z-popover)";
11
+ readonly Toast: "var(--gloss-z-toast)";
12
+ };
13
+ export type ZIndexValue = (typeof ZIndex)[keyof typeof ZIndex];
@@ -0,0 +1,56 @@
1
+ /**
2
+ * Composites category sub-barrel.
3
+ * Maps Composite components to consumer-facing names.
4
+ */
5
+ export { FilterChip } from '../composites/inputs/FilterChip';
6
+ export type { FilterChipProps, FilterValue } from '../composites/inputs/FilterChip';
7
+ export { Autocomplete } from '../composites/inputs/Autocomplete';
8
+ export type { AutocompleteProps } from '../composites/inputs/Autocomplete';
9
+ export { MultiSelect } from '../composites/inputs/MultiSelect';
10
+ export type { MultiSelectProps, MultiSelectOption } from '../composites/inputs/MultiSelect';
11
+ export { EntityPicker } from '../composites/inputs/EntityPicker';
12
+ export type { EntityPickerProps, EntityPickerEntity } from '../composites/inputs/EntityPicker';
13
+ export { DataTable } from '../composites/data/DataTable';
14
+ export type { DataTableProps, DataTableColumn } from '../composites/data/DataTable';
15
+ export { PinToMetric } from '../composites/data/PinToMetric';
16
+ export type { PinToMetricProps, AggregationType } from '../composites/data/PinToMetric';
17
+ export { FormDialog } from '../composites/overlay/FormDialog';
18
+ export type { FormDialogProps } from '../composites/overlay/FormDialog';
19
+ export { Dropdown } from '../composites/overlay/Dropdown/Dropdown';
20
+ export type { DropdownProps } from '../composites/overlay/Dropdown/Dropdown';
21
+ export { SplitButton } from '../composites/overlay/SplitButton/SplitButton';
22
+ export type { SplitButtonProps } from '../composites/overlay/SplitButton/SplitButton';
23
+ export { MergePrompt } from '../composites/overlay/MergePrompt';
24
+ export type { MergePromptProps, MergePromptCardSummary } from '../composites/overlay/MergePrompt';
25
+ export { Stepper } from '../composites/navigation/Stepper';
26
+ export type { StepperProps, StepDefinition } from '../composites/navigation/Stepper';
27
+ export { TrendCard } from '../composites/cards/TrendCard';
28
+ export type { TrendCardProps } from '../composites/cards/TrendCard';
29
+ export { SimpleMetricCard } from '../composites/cards/SimpleMetricCard';
30
+ export type { SimpleMetricCardProps } from '../composites/cards/SimpleMetricCard';
31
+ export { BarChartCard } from '../composites/cards/BarChartCard';
32
+ export type { BarChartCardProps } from '../composites/cards/BarChartCard';
33
+ export { ComparisonCard } from '../composites/cards/ComparisonCard';
34
+ export type { ComparisonCardProps } from '../composites/cards/ComparisonCard';
35
+ export { DirectionCard } from '../composites/cards/DirectionCard';
36
+ export type { DirectionCardProps } from '../composites/cards/DirectionCard';
37
+ export { DistributionCard } from '../composites/cards/DistributionCard';
38
+ export type { DistributionCardProps } from '../composites/cards/DistributionCard';
39
+ export { HighlightCard } from '../composites/cards/HighlightCard';
40
+ export type { HighlightCardProps } from '../composites/cards/HighlightCard';
41
+ export { ProgressCard } from '../composites/cards/ProgressCard';
42
+ export type { ProgressCardProps } from '../composites/cards/ProgressCard';
43
+ export { SegmentCard } from '../composites/cards/SegmentCard';
44
+ export type { SegmentCardProps } from '../composites/cards/SegmentCard';
45
+ export { PasswordInput } from '../composites/forms/PasswordInput';
46
+ export type { PasswordInputProps } from '../composites/forms/PasswordInput';
47
+ export { SearchInput } from '../composites/forms/SearchInput';
48
+ export type { SearchInputProps } from '../composites/forms/SearchInput';
49
+ export { TagInput } from '../composites/forms/TagInput';
50
+ export type { TagInputProps } from '../composites/forms/TagInput';
51
+ export { PhoneInput } from '../composites/forms/PhoneInput';
52
+ export type { PhoneInputProps } from '../composites/forms/PhoneInput';
53
+ export { AddressSelect } from '../composites/forms/AddressSelect';
54
+ export type { AddressSelectProps } from '../composites/forms/AddressSelect';
55
+ export { PaymentMethodSelect } from '../composites/forms/PaymentMethodSelect';
56
+ export type { PaymentMethodSelectProps } from '../composites/forms/PaymentMethodSelect';
@@ -0,0 +1,27 @@
1
+ /**
2
+ * Compositions category sub-barrel.
3
+ * Maps Composition components to consumer-facing names.
4
+ * Form compositions also export their Zod schemas.
5
+ */
6
+ export { default as LoginForm, loginSchema } from '../compositions/forms/LoginForm';
7
+ export type { LoginFormProps, LoginFormValues } from '../compositions/forms/LoginForm';
8
+ export { default as CreditCardForm, creditCardSchema } from '../compositions/forms/CreditCardForm';
9
+ export type { CreditCardFormProps, CreditCardFormValues } from '../compositions/forms/CreditCardForm';
10
+ export { default as AddressGroup, addressSchema } from '../compositions/forms/AddressGroup';
11
+ export type { AddressGroupProps, AddressFormValues, AddressGroupRef } from '../compositions/forms/AddressGroup';
12
+ export { default as RegistrationForm, registrationSchema } from '../compositions/forms/RegistrationForm';
13
+ export type { RegistrationFormProps, RegistrationFormValues } from '../compositions/forms/RegistrationForm';
14
+ export { default as PaymentForm, paymentSchema } from '../compositions/forms/PaymentForm';
15
+ export type { PaymentFormProps, PaymentFormValues } from '../compositions/forms/PaymentForm';
16
+ export { default as ContactForm, contactSchema } from '../compositions/forms/ContactForm';
17
+ export type { ContactFormProps, ContactFormValues } from '../compositions/forms/ContactForm';
18
+ export { default as DestructiveModal } from '../compositions/feedback/DestructiveModal';
19
+ export type { DestructiveModalProps } from '../compositions/feedback/DestructiveModal';
20
+ export { EntitySearchPanel } from '../compositions/panels/EntitySearchPanel';
21
+ export type { EntitySearchPanelProps } from '../compositions/panels/EntitySearchPanel';
22
+ export { ProfileCard } from '../compositions/panels/ProfileCard';
23
+ export type { ProfileCardProps } from '../compositions/panels/ProfileCard';
24
+ export { OrderFilterBar } from '../compositions/filters/OrderFilterBar';
25
+ export type { OrderFilterBarProps, OrderFilterState } from '../compositions/filters/OrderFilterBar';
26
+ export { ImportWizard } from '../compositions/navigation/ImportWizard';
27
+ export type { ImportWizardProps } from '../compositions/navigation/ImportWizard';
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Containers category sub-barrel (Phase 25.1).
3
+ * Context-providing container components.
4
+ */
5
+ export { ContainerForm as Form, useFormContext } from '../containers/ContainerForm/ContainerForm';
6
+ export type { ContainerFormProps as FormProps } from '../containers/ContainerForm/ContainerForm';
7
+ export { ContainerFormField as FormField } from '../containers/ContainerFormField/ContainerFormField';
8
+ export type { ContainerFormFieldProps as FormFieldProps } from '../containers/ContainerFormField/ContainerFormField';
@@ -0,0 +1,41 @@
1
+ /**
2
+ * Data display category sub-barrel.
3
+ * Dashboard components for the UI.* namespace.
4
+ *
5
+ * Re-exports all dashboard component families for facade consumption.
6
+ * Type-only re-exports use `export type` for isolatedModules compatibility.
7
+ */
8
+ export { MetricCard } from '../primitives/dashboard/MetricCard';
9
+ export { CardShell } from '../primitives/dashboard/MetricCard';
10
+ export { TrendIndicator } from '../primitives/dashboard/MetricCard';
11
+ export { StackedGroupCard } from '../primitives/dashboard/MetricCard';
12
+ export { CardBack } from '../primitives/dashboard/MetricCard';
13
+ export { GutterActions } from '../primitives/dashboard/MetricCard';
14
+ export type { MetricCardProps, CardShellProps } from '../primitives/dashboard/MetricCard/types';
15
+ export type { StackedGroupCardProps, StackedValueEntry } from '../primitives/dashboard/MetricCard/StackedGroupCard';
16
+ export type { CardBackProps } from '../primitives/dashboard/MetricCard/CardBack';
17
+ export type { GutterActionsProps } from '../primitives/dashboard/MetricCard/GutterActions';
18
+ export { SparklineBg } from '../primitives/dashboard/MetricCard';
19
+ export { BarsBg } from '../primitives/dashboard/MetricCard';
20
+ export { DonutChart } from '../primitives/dashboard/MetricCard';
21
+ export { ObjectArrow } from '../primitives/dashboard/MetricCard';
22
+ export { useSlideOutReveal } from '../primitives/dashboard/MetricCard';
23
+ export type { SlideOutRevealConfig, SlideOutRevealReturn } from '../primitives/dashboard/MetricCard/useSlideOutReveal';
24
+ export { TimeFrame, HybridDatePicker } from '../primitives/dashboard/TimeFrame';
25
+ export type { TimeFrameProps, HybridDatePickerProps } from '../primitives/dashboard/TimeFrame';
26
+ export { resolvePreset, resolveEvent, smartDateFormat, formatDateRange as formatDateRangeInterpretation } from '@mt-gloss/utils/dateInterpretation';
27
+ export type { PresetId, EventRegistryEntry } from '@mt-gloss/utils/dateInterpretation';
28
+ export { ChartControlBar } from '../primitives/dashboard/ChartControlBar';
29
+ export type { ChartControlBarProps } from '../primitives/dashboard/ChartControlBar';
30
+ export { UnifiedContextMenu } from '../primitives/dashboard/UnifiedContextMenu';
31
+ export type { UnifiedContextMenuProps } from '../primitives/dashboard/UnifiedContextMenu';
32
+ export { MetricCardGrid } from '../primitives/dashboard/MetricCardGrid';
33
+ export type { MetricCardGridProps, GridCardData, GridLayout } from '../primitives/dashboard/MetricCardGrid';
34
+ export { TabbedDataView } from '../primitives/dashboard/TabbedDataView';
35
+ export type { TabbedDataViewProps, TabConfig } from '../primitives/dashboard/TabbedDataView';
36
+ export { UnifiedBreakdownTable } from '../primitives/dashboard/UnifiedBreakdownTable';
37
+ export type { UnifiedBreakdownTableProps, ColumnDef, SortModel, PaginationConfig } from '../primitives/dashboard/UnifiedBreakdownTable';
38
+ export { TabGroup } from '../primitives/dashboard/TabGroup';
39
+ export type { TabGroupProps, TabDef, GroupDef } from '../primitives/dashboard/TabGroup';
40
+ export { Skeleton, SkeletonCard, SkeletonChart, SkeletonTable } from '../primitives/dashboard/Skeleton';
41
+ export type { SkeletonProps, SkeletonCardProps, SkeletonChartProps, SkeletonTableProps } from '../primitives/dashboard/Skeleton';