Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
acb45e2
refactor(fuselage): export `VisibilityType`
tassoevan May 19, 2026
e575a4b
refactor(fuselage): rearrange `AutoComplete` type
tassoevan May 19, 2026
a386e34
refactor(fuselage): export `BannerVariant`
tassoevan May 19, 2026
1560e70
refactor(fuselage): export `PartialNode`
tassoevan May 19, 2026
fda7d0f
refactor(fuselage): export `Themes`
tassoevan May 19, 2026
440c7a4
refactor(fuselage): export `MessageEmojiBaseProps`
tassoevan May 19, 2026
1ef77e6
refactor(fuselage): use a single `SelectOption` declaration
tassoevan May 19, 2026
0e96adc
refactor(fuselage): export `SelectInputOptions`
tassoevan May 19, 2026
74d9108
refactor(fuselage): export `MultiSelectAnchorParams`
tassoevan May 19, 2026
aa61b9e
refactor(fuselage): export `ItemsPerPage`
tassoevan May 19, 2026
27db6a1
refactor(fuselage): export `PaginatedSelect` types
tassoevan May 19, 2026
4598581
refactor(fuselage): export `LabelInfoProps`
tassoevan May 19, 2026
86dd935
refactor(fuselage): export types for specialized `Button` sizes
tassoevan May 19, 2026
f4fe6ca
refactor(fuselage): update `useCursor` to use `VisibilityHandler` typ…
tassoevan May 19, 2026
5d41934
refactor(fuselage): export `StylingProps` and `FontScale` types from …
tassoevan May 20, 2026
33630fc
refactor(fuselage): export `Falsy` type and `Var` class from `Theme`
tassoevan May 20, 2026
24ee42b
refactor(fuselage): export `SidebarBannerVariant` and `TopBar` props …
tassoevan May 20, 2026
a1a0fcc
refactor(fuselage): update `SidebarV2` components to export new props…
tassoevan May 20, 2026
c2e57ec
refactor(Options): update return type for `Options`
tassoevan May 20, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/fuselage-forms/fuselage-forms.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import { IconProps } from '@rocket.chat/fuselage';
import { InputBoxProps } from '@rocket.chat/fuselage';
import { JSX as JSX_2 } from 'react/jsx-runtime';
import { Key } from 'react';
import { MultiSelectAnchorParams } from '@rocket.chat/fuselage/dist/components/MultiSelect/MultiSelectAnchorParams';
import { MultiSelectAnchorParams } from '@rocket.chat/fuselage';
import { NumberInputProps } from '@rocket.chat/fuselage';
import { PasswordInputProps } from '@rocket.chat/fuselage';
import { ReactNode } from 'react';
Expand Down Expand Up @@ -178,7 +178,7 @@ error?: string;
placeholder?: string;
value?: Key | null | undefined;
onChange?: ((key: Key) => any) | undefined;
options: (readonly [value: string, label: string, selected?: boolean | undefined])[];
options: SelectOption[];
small?: boolean;
} & Omit<AllHTMLAttributes<HTMLElement>, "value" | "onChange"> & RefAttributes<HTMLElement>, "ref"> & RefAttributes<HTMLElement>>;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const Select = withAriaLabelledBy(SelectComponent);

// with aria-labelledby + id for aria-controls
export const AutoComplete = withAriaLabelledByAndId(
AutoCompleteComponent,
AutoCompleteComponent<any>,
) as typeof AutoCompleteComponent;
export const MultiSelect = withAriaLabelledByAndId(MultiSelectComponent);
export const MultiSelectFiltered = withAriaLabelledByAndId(
Expand Down
Loading
Loading