@mt-gloss/ui 0.1.133 → 0.1.135

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 (37) hide show
  1. package/{COMMITS-WBmqrmdI.js → COMMITS-B_qGBoy7.js} +171 -183
  2. package/{Expandable-D0vngX68.js → Expandable-DA4NFzCR.js} +2768 -2720
  3. package/catalog.js +2 -2
  4. package/composites-panels.js +451 -543
  5. package/index.js +1233 -1215
  6. package/lib/composites/forms/PasswordInput.d.ts +6 -1
  7. package/lib/composites/forms/PhoneInput.d.ts +6 -1
  8. package/lib/composites/forms/SearchInput.d.ts +6 -1
  9. package/lib/composites/forms/TagInput.d.ts +6 -1
  10. package/lib/composites/inputs/FilterChip.d.ts +6 -1
  11. package/lib/composites/overlay/SplitButton/SplitButton.d.ts +6 -1
  12. package/lib/composites/panels/coordinator/settingsBufferSchemas.d.ts +4 -9
  13. package/lib/composites/panels/index.d.ts +2 -0
  14. package/lib/composites/panels/shells/MetricInfoShell.d.ts +29 -0
  15. package/lib/composites/panels/shells/SettingsShell.d.ts +4 -13
  16. package/lib/composites/panels/shells/index.d.ts +2 -0
  17. package/lib/composites/panels/shells/settings/index.d.ts +3 -4
  18. package/lib/containers/ContainerDialog/ContainerDialog.d.ts +18 -3
  19. package/lib/containers/ContainerFormSection/ContainerFormSection.d.ts +6 -1
  20. package/lib/containers/ContainerPanel/ContainerPanel.d.ts +6 -1
  21. package/lib/containers/ContainerTable/ContainerTable.d.ts +6 -1
  22. package/lib/containers/ContainerToolbar/ContainerToolbar.d.ts +6 -1
  23. package/lib/primitives/dashboard/ResizePill/ResizePill.d.ts +7 -1
  24. package/lib/wrappers/Actionable/Actionable.d.ts +6 -1
  25. package/lib/wrappers/AsyncLoader/AsyncLoader.d.ts +6 -1
  26. package/lib/wrappers/ButtonGroup/ButtonGroup.d.ts +6 -1
  27. package/lib/wrappers/CheckboxGroup/CheckboxGroup.d.ts +6 -1
  28. package/lib/wrappers/Dismissible/Dismissible.d.ts +6 -1
  29. package/lib/wrappers/Expandable/Expandable.d.ts +6 -1
  30. package/lib/wrappers/InputGroup/InputGroup.d.ts +12 -2
  31. package/lib/wrappers/RadioGroup/RadioGroup.d.ts +6 -1
  32. package/lib/wrappers/Selectable/Selectable.d.ts +6 -1
  33. package/lib/wrappers/Sortable/Sortable.d.ts +6 -1
  34. package/package.json +1 -1
  35. package/ui.css +1 -1
  36. package/lib/composites/panels/shells/settings/ColorControls.d.ts +0 -13
  37. package/lib/composites/panels/shells/settings/ThresholdControls.d.ts +0 -10
@@ -76,4 +76,9 @@ export interface PasswordInputProps {
76
76
  * />
77
77
  * ```
78
78
  */
79
- export declare const PasswordInput: React.ForwardRefExoticComponent<PasswordInputProps & React.RefAttributes<HTMLInputElement>>;
79
+ export declare const PasswordInput: {
80
+ ({ ref, showToggle, showStrength, strength: externalStrength, strengthRules, showGenerate, onGenerate, generateLength, showRules, value, defaultValue, onChange, onBlur, label, placeholder, status, helperText, required, disabled, name, id, className, autoComplete, }: PasswordInputProps & {
81
+ ref?: React.Ref<HTMLInputElement>;
82
+ }): import("react/jsx-runtime").JSX.Element;
83
+ displayName: string;
84
+ };
@@ -66,4 +66,9 @@ export interface PhoneInputProps {
66
66
  * />
67
67
  * ```
68
68
  */
69
- export declare const PhoneInput: React.ForwardRefExoticComponent<PhoneInputProps & React.RefAttributes<HTMLInputElement>>;
69
+ export declare const PhoneInput: {
70
+ ({ ref, value, defaultValue, onChange, defaultCountry, countries, showCountrySelect, format, label, placeholder, helperText, status, required, disabled, name, className, id: providedId, }: PhoneInputProps & {
71
+ ref?: React.Ref<HTMLInputElement>;
72
+ }): import("react/jsx-runtime").JSX.Element;
73
+ displayName: string;
74
+ };
@@ -86,4 +86,9 @@ export interface SearchInputProps {
86
86
  * />
87
87
  * ```
88
88
  */
89
- export declare const SearchInput: React.ForwardRefExoticComponent<SearchInputProps & React.RefAttributes<HTMLInputElement>>;
89
+ export declare const SearchInput: {
90
+ ({ ref, onSearch, debounce, isSearching, suggestions, onSuggestionSelect, showSuggestions, showShortcut, shortcutKey, clearable, value, defaultValue, onChange, onKeyDown, onFocus, onBlur, placeholder, label, status, helperText, required, disabled, name, id, className, autoComplete, }: SearchInputProps & {
91
+ ref?: React.Ref<HTMLInputElement>;
92
+ }): import("react/jsx-runtime").JSX.Element;
93
+ displayName: string;
94
+ };
@@ -95,4 +95,9 @@ export interface TagInputProps {
95
95
  * />
96
96
  * ```
97
97
  */
98
- export declare const TagInput: React.ForwardRefExoticComponent<TagInputProps & React.RefAttributes<HTMLInputElement>>;
98
+ export declare const TagInput: {
99
+ ({ ref, value, defaultValue, onChange, separator, maxTags, maxLength, allowDuplicates, validateTag, suggestions, placeholder, disabled, label, helperText, status, size, className, id: providedId, name, }: TagInputProps & {
100
+ ref?: React.Ref<HTMLInputElement>;
101
+ }): import("react/jsx-runtime").JSX.Element;
102
+ displayName: string;
103
+ };
@@ -26,4 +26,9 @@ export interface FilterChipProps {
26
26
  * FilterChip -- Composite wrapping PresetChip with typed filter semantics.
27
27
  * Enforces Slot compliance (D-04): no children prop.
28
28
  */
29
- export declare const FilterChip: React.ForwardRefExoticComponent<FilterChipProps & React.RefAttributes<HTMLDivElement>>;
29
+ export declare const FilterChip: {
30
+ ({ ref, filter, active, onToggle, onRemove, labelSlot, disabled, size, className, }: FilterChipProps & {
31
+ ref?: React.Ref<HTMLDivElement>;
32
+ }): import("react/jsx-runtime").JSX.Element;
33
+ displayName: string;
34
+ };
@@ -22,6 +22,11 @@ export interface SplitButtonProps {
22
22
  * SplitButton -- Composite tier. Main action button with dropdown menu.
23
23
  * Orchestrates Button + ButtonGroup + dropdown menu.
24
24
  */
25
- export declare const SplitButton: React.ForwardRefExoticComponent<SplitButtonProps & React.RefAttributes<HTMLDivElement>>;
25
+ export declare const SplitButton: {
26
+ ({ ref, children, onClick, menuItems, variant, size, disabled, dropdownIcon, leftIcon, }: SplitButtonProps & {
27
+ ref?: React.Ref<HTMLDivElement>;
28
+ }): import("react/jsx-runtime").JSX.Element;
29
+ displayName: string;
30
+ };
26
31
  export { SplitButton as PresetSplitButton };
27
32
  export type { SplitButtonProps as PresetSplitButtonProps };
@@ -3,16 +3,11 @@
3
3
  * Called inside the SET_BUFFER_VALUE reducer case (coordinator.ts).
4
4
  * Unknown keys pass through unchanged (forward-compat).
5
5
  *
6
- * Fallback values per spike §6.1.4:
7
- * threshold → 80, timeframe → 30, accent → null, slots → []
6
+ * Post-M003-S002-CFG discriminated union (D-14):
7
+ * timeframe → 30 (default), slots → []
8
8
  *
9
- * Phase 17.2 additions:
10
- * thresholdEnabled false, accentEnabled → false
11
- *
12
- * @param key buffer-value key (e.g. 'threshold', 'timeframe', 'accent',
13
- * 'slots', 'thresholdEnabled', 'accentEnabled')
14
- * @param value unknown — number (sliders), string (color hex), string[]
15
- * (slots), or boolean (toggles)
9
+ * @param key buffer-value key — 'timeframe' | 'slots' | any forward-compat string
10
+ * @param value unknown
16
11
  * @returns normalized value (clamped, parsed, or passthrough)
17
12
  */
18
13
  export declare function normalizeBufferValue(key: string, value: unknown): unknown;
@@ -10,6 +10,8 @@
10
10
  export { PanelProvider, usePanelContext, usePanelContextOptional } from './PanelProvider';
11
11
  export { useEditingCardId } from './hooks/useEditingCardId';
12
12
  export { SettingsShell } from './shells/SettingsShell';
13
+ export { MetricInfoShell } from './shells/MetricInfoShell';
14
+ export type { MetricInfoShellProps, MetricInfoBlock } from './shells/MetricInfoShell';
13
15
  export { NotificationCenterShell } from './shells/NotificationCenterShell';
14
16
  export { CatalogAddShell } from './shells/CatalogAddShell';
15
17
  export type { CatalogAddShellProps } from './shells/CatalogAddShell';
@@ -0,0 +1,29 @@
1
+ import { default as React } from 'react';
2
+ import { PanelShellProps } from '../PanelHost';
3
+ export interface MetricInfoBlock {
4
+ /** Metric display name from getMetricInfo(metricTypeId).title. */
5
+ title: string;
6
+ /** Metric description from getMetricInfo(metricTypeId).description. */
7
+ description: string;
8
+ }
9
+ export interface MetricInfoShellProps extends PanelShellProps {
10
+ /** Span of the source card (1|2|3). Plumbed by reptime MetricSettingsPanel. */
11
+ cardSpan?: 1 | 2 | 3;
12
+ /**
13
+ * Render-as-children path for the Stage 3D clone. Mirrors SettingsShell's
14
+ * previewSlot prop (D-09 — verbatim reuse). Consumer (reptime) builds this
15
+ * by calling renderCard(card, span, ...) so the clone is a 1:1 representation
16
+ * of the live card.
17
+ */
18
+ previewSlot?: React.ReactNode;
19
+ /**
20
+ * Metric name + description block rendered below the CloneStage (D-05).
21
+ * Consumer pulls these from getMetricInfo(metricTypeId) at
22
+ * reptime-cloud/.../app/data/metricInfo/helpers.ts.
23
+ */
24
+ metricInfo: MetricInfoBlock;
25
+ }
26
+ export declare function MetricInfoShell({ isOpen, cardSpan, previewSlot, metricInfo, }: MetricInfoShellProps): import("react/jsx-runtime").JSX.Element;
27
+ export declare namespace MetricInfoShell {
28
+ var displayName: string;
29
+ }
@@ -1,7 +1,6 @@
1
1
  import { default as React } from 'react';
2
2
  import { PanelShellProps } from '../PanelHost';
3
3
  import { SettingsDimension } from '../../../primitives/dashboard/SettingsTabStrip';
4
- import { AccentSwatch } from './settings';
5
4
  export interface SettingsShellProps extends PanelShellProps {
6
5
  /** Span of the source card (1|2|3). Plumbed by V2FeedbackSurface HOF. */
7
6
  cardSpan?: 1 | 2 | 3;
@@ -37,26 +36,18 @@ export interface SettingsShellProps extends PanelShellProps {
37
36
  * - Re-opening the panel after Apply shows the saved value (not React default).
38
37
  * - Reset (CLEAR_BUFFER) reverts to the saved value (CC-19 semantics with persistence).
39
38
  *
40
- * Display precedence per dimension:
39
+ * Post-M003-S002-CFG display precedence per dimension:
41
40
  * 1. live buffer (`state.bufferByCard[cardId].changes[dim]`) — user mid-edit
42
41
  * 2. `initialValues[dim]` — last-applied baseline from localStorage
43
- * 3. React-default per spike §6.1.4 (threshold=80, timeframe=30, accent=null, slots=['Orders','Quota','Unassigned'])
42
+ * 3. React-default per spike §6.1.4 (timeframe=30, slots=['Orders','Quota','Unassigned'])
44
43
  *
45
- * Spike §6.1 documents the prototype's defaults (30/80). Production persists
46
- * via D-10 COMMIT_BUFFER → usePreferences('metricConfig'); the seed-on-open
47
- * round-trip closes the loop — without it the Apply'd value vanishes from the
48
- * UI even though localStorage holds it.
44
+ * Spike §6.1 documents the prototype's defaults; production persists
45
+ * via D-10 COMMIT_BUFFER → usePreferences('metricConfig').
49
46
  */
50
47
  initialValues?: Partial<{
51
- threshold: number;
52
48
  timeframe: number;
53
- accent: AccentSwatch;
54
49
  /** GAP-03 (sprint 2026-05-15): persisted slot order. Max 3, empty array valid. */
55
50
  slots: ReadonlyArray<string>;
56
- /** Phase 17.2 Fix #2 — opt-in toggle for threshold overlay. Default false. */
57
- thresholdEnabled: boolean;
58
- /** Phase 17.2 Fix #2 — opt-in toggle for accent override. Default false. */
59
- accentEnabled: boolean;
60
51
  }>;
61
52
  }
62
53
  export declare function SettingsShell({ isOpen, cardSpan, cardLabel, cardValue, previewSlot, dimensions, initialTab, initialValues, }: SettingsShellProps): import("react/jsx-runtime").JSX.Element;
@@ -3,6 +3,8 @@
3
3
  */
4
4
  export { SettingsShell } from './SettingsShell';
5
5
  export type { SettingsShellProps } from './SettingsShell';
6
+ export { MetricInfoShell } from './MetricInfoShell';
7
+ export type { MetricInfoShellProps, MetricInfoBlock } from './MetricInfoShell';
6
8
  export { CatalogAddShell } from './CatalogAddShell';
7
9
  export type { CatalogAddShellProps } from './CatalogAddShell';
8
10
  export { CatalogReplaceShell } from './CatalogReplaceShell';
@@ -2,11 +2,10 @@
2
2
  * SettingsShell tab-body components. Each renders inside SettingsShell's role=tabpanel via React
3
3
  * conditional render (CC-15/16). Phase 16 D-08 keeps these co-located with SettingsShell — they are
4
4
  * not standalone primitives.
5
+ *
6
+ * M003-S002-CFG (2026-05-26): ThresholdControls + ColorControls removed per D-10 (per-metric-type
7
+ * threshold + color deferred to later product conversation).
5
8
  */
6
- export { ThresholdControls } from './ThresholdControls';
7
- export type { ThresholdControlsProps } from './ThresholdControls';
8
9
  export { TimeframeControls } from './TimeframeControls';
9
10
  export type { TimeframeControlsProps } from './TimeframeControls';
10
11
  export { SlotsControls } from './SlotsControls';
11
- export { ColorControls } from './ColorControls';
12
- export type { ColorControlsProps, AccentSwatch } from './ColorControls';
@@ -16,12 +16,27 @@ export declare namespace ContainerDialog {
16
16
  export interface ContainerDialogHeaderProps {
17
17
  children?: React.ReactNode;
18
18
  }
19
- export declare const ContainerDialogHeader: React.ForwardRefExoticComponent<ContainerDialogHeaderProps & Omit<React.HTMLAttributes<HTMLDivElement>, "style" | "className"> & React.RefAttributes<HTMLDivElement>>;
19
+ export declare const ContainerDialogHeader: {
20
+ ({ ref, children, ...rest }: ContainerDialogHeaderProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "style"> & {
21
+ ref?: React.Ref<HTMLDivElement>;
22
+ }): import("react/jsx-runtime").JSX.Element;
23
+ displayName: string;
24
+ };
20
25
  export interface ContainerDialogBodyProps {
21
26
  children?: React.ReactNode;
22
27
  }
23
- export declare const ContainerDialogBody: React.ForwardRefExoticComponent<ContainerDialogBodyProps & Omit<React.HTMLAttributes<HTMLDivElement>, "style" | "className"> & React.RefAttributes<HTMLDivElement>>;
28
+ export declare const ContainerDialogBody: {
29
+ ({ ref, children, ...rest }: ContainerDialogBodyProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "style"> & {
30
+ ref?: React.Ref<HTMLDivElement>;
31
+ }): import("react/jsx-runtime").JSX.Element;
32
+ displayName: string;
33
+ };
24
34
  export interface ContainerDialogActionsProps {
25
35
  children?: React.ReactNode;
26
36
  }
27
- export declare const ContainerDialogActions: React.ForwardRefExoticComponent<ContainerDialogActionsProps & Omit<React.HTMLAttributes<HTMLDivElement>, "style" | "className"> & React.RefAttributes<HTMLDivElement>>;
37
+ export declare const ContainerDialogActions: {
38
+ ({ ref, children, ...rest }: ContainerDialogActionsProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "style"> & {
39
+ ref?: React.Ref<HTMLDivElement>;
40
+ }): import("react/jsx-runtime").JSX.Element;
41
+ displayName: string;
42
+ };
@@ -10,4 +10,9 @@ export interface ContainerFormSectionProps {
10
10
  * Form.Section Context-Container. Groups form fields within a fieldset.
11
11
  * Sets UIContext region='form-section'.
12
12
  */
13
- export declare const ContainerFormSection: React.ForwardRefExoticComponent<ContainerFormSectionProps & Omit<React.FieldsetHTMLAttributes<HTMLFieldSetElement>, "style" | "className"> & React.RefAttributes<HTMLFieldSetElement>>;
13
+ export declare const ContainerFormSection: {
14
+ ({ ref, legend, description, density, children, ...rest }: ContainerFormSectionProps & Omit<React.FieldsetHTMLAttributes<HTMLFieldSetElement>, "className" | "style"> & {
15
+ ref?: React.Ref<HTMLFieldSetElement>;
16
+ }): import("react/jsx-runtime").JSX.Element;
17
+ displayName: string;
18
+ };
@@ -11,4 +11,9 @@ export interface ContainerPanelProps {
11
11
  * Panel Context-Container. Collapsible content region.
12
12
  * Sets UIContext region='panel'.
13
13
  */
14
- export declare const ContainerPanel: React.ForwardRefExoticComponent<ContainerPanelProps & Omit<React.HTMLAttributes<HTMLDivElement>, "style" | "title" | "className"> & React.RefAttributes<HTMLDivElement>>;
14
+ export declare const ContainerPanel: {
15
+ ({ ref, title, collapsed, onToggle, density, children, ...rest }: ContainerPanelProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "style" | "title"> & {
16
+ ref?: React.Ref<HTMLDivElement>;
17
+ }): import("react/jsx-runtime").JSX.Element;
18
+ displayName: string;
19
+ };
@@ -9,4 +9,9 @@ export interface ContainerTableProps {
9
9
  * Sets UIContext region='table', density defaults to 'compact'.
10
10
  * Wraps existing content -- does NOT replace BaseTable.
11
11
  */
12
- export declare const ContainerTable: React.ForwardRefExoticComponent<ContainerTableProps & Omit<React.HTMLAttributes<HTMLDivElement>, "style" | "className"> & React.RefAttributes<HTMLDivElement>>;
12
+ export declare const ContainerTable: {
13
+ ({ ref, density, children, ...rest }: ContainerTableProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "style"> & {
14
+ ref?: React.Ref<HTMLDivElement>;
15
+ }): import("react/jsx-runtime").JSX.Element;
16
+ displayName: string;
17
+ };
@@ -8,4 +8,9 @@ export interface ContainerToolbarProps {
8
8
  * Toolbar Context-Container. Compact layout context for action buttons and controls.
9
9
  * Sets UIContext region='toolbar', density defaults to 'compact'.
10
10
  */
11
- export declare const ContainerToolbar: React.ForwardRefExoticComponent<ContainerToolbarProps & Omit<React.HTMLAttributes<HTMLDivElement>, "style" | "className"> & React.RefAttributes<HTMLDivElement>>;
11
+ export declare const ContainerToolbar: {
12
+ ({ ref, density, children, ...rest }: ContainerToolbarProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "style"> & {
13
+ ref?: React.Ref<HTMLDivElement>;
14
+ }): import("react/jsx-runtime").JSX.Element;
15
+ displayName: string;
16
+ };
@@ -1,3 +1,4 @@
1
+ import { Ref } from 'react';
1
2
  import { ResizePillPhysicsConfig } from './resizePillPhysics';
2
3
  import { PillButton, PillPhase, PillTarget } from './useResizePill';
3
4
  export type { PillButton, PillPhase, PillTarget };
@@ -79,4 +80,9 @@ export interface ResizePillPreviewProps {
79
80
  * and pill-button-hover (which Plan 02's preview overlay also reads from
80
81
  * useResizePill). Negative grep test (style-audit) enforces this.
81
82
  */
82
- export declare const ResizePill: import('react').ForwardRefExoticComponent<ResizePillProps & import('react').RefAttributes<HTMLDivElement>>;
83
+ export declare const ResizePill: {
84
+ ({ ref, ...props }: ResizePillProps & {
85
+ ref?: Ref<HTMLDivElement>;
86
+ }): import("react/jsx-runtime").JSX.Element;
87
+ displayName: string;
88
+ };
@@ -14,4 +14,9 @@ export interface ActionableProps {
14
14
  *
15
15
  * Usage: <Actionable onAction={handleClick}><Card>...</Card></Actionable>
16
16
  */
17
- export declare const Actionable: React.ForwardRefExoticComponent<ActionableProps & React.RefAttributes<HTMLElement>>;
17
+ export declare const Actionable: {
18
+ ({ ref, onAction, disabled, role: ariaRole, children, }: ActionableProps & {
19
+ ref?: React.Ref<HTMLElement>;
20
+ }): React.ReactElement<Record<string, unknown>, string | React.JSXElementConstructor<any>>;
21
+ displayName: string;
22
+ };
@@ -8,6 +8,11 @@ export interface AsyncLoaderProps {
8
8
  * AsyncLoader -- Wrapper tier. SVG perimeter-tracing animation wrapper.
9
9
  * Strips className/style from consumer API.
10
10
  */
11
- export declare const AsyncLoader: React.ForwardRefExoticComponent<AsyncLoaderProps & React.RefAttributes<HTMLDivElement>>;
11
+ export declare const AsyncLoader: {
12
+ ({ ref, color, isLoading, children, ...rest }: AsyncLoaderProps & {
13
+ ref?: React.Ref<HTMLDivElement>;
14
+ }): import("react/jsx-runtime").JSX.Element;
15
+ displayName: string;
16
+ };
12
17
  export { AsyncLoader as PresetAsyncLoader };
13
18
  export type { AsyncLoaderProps as PresetAsyncLoaderProps };
@@ -18,6 +18,11 @@ export declare const ButtonGroupContext: React.Context<ButtonGroupContextValue>;
18
18
  * ButtonGroup -- Wrapper tier. Groups related buttons with context propagation.
19
19
  * Locked-down API (no className/style).
20
20
  */
21
- export declare const ButtonGroup: React.ForwardRefExoticComponent<ButtonGroupProps & React.RefAttributes<HTMLDivElement>>;
21
+ export declare const ButtonGroup: {
22
+ ({ ref, children, orientation, attached, size, variant, fullWidth, gap, }: ButtonGroupProps & {
23
+ ref?: React.Ref<HTMLDivElement>;
24
+ }): import("react/jsx-runtime").JSX.Element;
25
+ displayName: string;
26
+ };
22
27
  export { ButtonGroup as PresetButtonGroup };
23
28
  export type { ButtonGroupProps as PresetButtonGroupProps };
@@ -47,6 +47,11 @@ export interface GroupCheckboxProps {
47
47
  disabled?: boolean;
48
48
  helperText?: string;
49
49
  }
50
- export declare const GroupCheckbox: React.ForwardRefExoticComponent<GroupCheckboxProps & React.RefAttributes<HTMLInputElement>>;
50
+ export declare const GroupCheckbox: {
51
+ ({ ref, value, ...props }: GroupCheckboxProps & {
52
+ ref?: React.Ref<HTMLInputElement>;
53
+ }): import("react/jsx-runtime").JSX.Element;
54
+ displayName: string;
55
+ };
51
56
  export { CheckboxGroup as PresetCheckboxGroup };
52
57
  export type { CheckboxGroupProps as PresetCheckboxGroupProps };
@@ -21,4 +21,9 @@ export interface DismissibleProps {
21
21
  * Note: Uses native DOM event listeners (not Floating UI) since Dismissible
22
22
  * doesn't need floating/positioning. For positioned overlays, use BaseOverlay instead.
23
23
  */
24
- export declare const Dismissible: React.ForwardRefExoticComponent<DismissibleProps & React.RefAttributes<HTMLElement>>;
24
+ export declare const Dismissible: {
25
+ ({ ref, onDismiss, dismissOnEscape, dismissOnClickOutside, showCloseButton, disabled, children, }: DismissibleProps & {
26
+ ref?: React.Ref<HTMLElement>;
27
+ }): import("react/jsx-runtime").JSX.Element;
28
+ displayName: string;
29
+ };
@@ -20,4 +20,9 @@ export interface ExpandableProps {
20
20
  * <div>Collapsible content here</div>
21
21
  * </Expandable>
22
22
  */
23
- export declare const Expandable: React.ForwardRefExoticComponent<ExpandableProps & React.RefAttributes<HTMLDivElement>>;
23
+ export declare const Expandable: {
24
+ ({ ref, expanded, trigger, onToggle, duration, children, }: ExpandableProps & {
25
+ ref?: React.Ref<HTMLDivElement>;
26
+ }): import("react/jsx-runtime").JSX.Element;
27
+ displayName: string;
28
+ };
@@ -11,10 +11,20 @@ export interface InputAddonProps {
11
11
  * InputGroup -- Wrapper tier. Groups inputs with addons.
12
12
  * Locked-down API (no className/style).
13
13
  */
14
- export declare const InputGroup: React.ForwardRefExoticComponent<InputGroupProps & React.RefAttributes<HTMLDivElement>>;
14
+ export declare const InputGroup: {
15
+ ({ ref, children, attached, }: InputGroupProps & {
16
+ ref?: React.Ref<HTMLDivElement>;
17
+ }): import("react/jsx-runtime").JSX.Element;
18
+ displayName: string;
19
+ };
15
20
  /**
16
21
  * InputAddon -- Wrapper tier. Prepend/append content to inputs.
17
22
  */
18
- export declare const InputAddon: React.ForwardRefExoticComponent<InputAddonProps & React.RefAttributes<HTMLSpanElement>>;
23
+ export declare const InputAddon: {
24
+ ({ ref, children, position, }: InputAddonProps & {
25
+ ref?: React.Ref<HTMLSpanElement>;
26
+ }): import("react/jsx-runtime").JSX.Element;
27
+ displayName: string;
28
+ };
19
29
  export { InputGroup as PresetInputGroup, InputAddon as PresetInputAddon };
20
30
  export type { InputGroupProps as PresetInputGroupProps, InputAddonProps as PresetInputAddonProps };
@@ -47,6 +47,11 @@ export interface GroupRadioProps {
47
47
  description?: React.ReactNode;
48
48
  disabled?: boolean;
49
49
  }
50
- export declare const GroupRadio: React.ForwardRefExoticComponent<GroupRadioProps & React.RefAttributes<HTMLInputElement>>;
50
+ export declare const GroupRadio: {
51
+ ({ ref, value, ...props }: GroupRadioProps & {
52
+ ref?: React.Ref<HTMLInputElement>;
53
+ }): import("react/jsx-runtime").JSX.Element;
54
+ displayName: string;
55
+ };
51
56
  export { RadioGroup as PresetRadioGroup };
52
57
  export type { RadioGroupProps as PresetRadioGroupProps };
@@ -16,4 +16,9 @@ export interface SelectableProps {
16
16
  *
17
17
  * Usage: <Selectable selected={isSelected} onSelect={handleSelect}><Card>...</Card></Selectable>
18
18
  */
19
- export declare const Selectable: React.ForwardRefExoticComponent<SelectableProps & React.RefAttributes<HTMLElement>>;
19
+ export declare const Selectable: {
20
+ ({ ref, selected, onSelect, disabled, showCheckbox, children, }: SelectableProps & {
21
+ ref?: React.Ref<HTMLElement>;
22
+ }): import("react/jsx-runtime").JSX.Element;
23
+ displayName: string;
24
+ };
@@ -24,4 +24,9 @@ export interface SortableProps {
24
24
  * </SortableContext>
25
25
  * </DndContext>
26
26
  */
27
- export declare const Sortable: React.ForwardRefExoticComponent<SortableProps & React.RefAttributes<HTMLElement>>;
27
+ export declare const Sortable: {
28
+ ({ ref, id, disabled, children, }: SortableProps & {
29
+ ref?: React.Ref<HTMLElement>;
30
+ }): import("react/jsx-runtime").JSX.Element;
31
+ displayName: string;
32
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mt-gloss/ui",
3
- "version": "0.1.133",
3
+ "version": "0.1.135",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "restricted"