@mt-gloss/ui 0.1.133 → 0.1.134

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.
@@ -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 };
@@ -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.134",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "restricted"