Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 4 additions & 1 deletion apps/meteor/client/providers/LayoutProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ const LayoutProvider = ({ children }: LayoutProviderProps) => {
const breakpoints = useBreakpoints(); // ["xs", "sm", "md", "lg", "xl", xxl"]
const [hiddenActions, setHiddenActions] = useState(hiddenActionsDefaultValue);
const enhancedNavigationEnabled = useFeaturePreview('newNavigation');
const secondSidebarEnabled = useFeaturePreview('secondarySidebar');

const router = useRouter();
// Once the layout is embedded, it can't be changed
Expand All @@ -34,6 +35,7 @@ const LayoutProvider = ({ children }: LayoutProviderProps) => {

const shouldToggle = enhancedNavigationEnabled ? isTablet || isMobile : isMobile;
const shouldDisplaySidePanel = !isTablet || displaySidePanel;
const defaultSidebarWidth = secondSidebarEnabled ? '220px' : '240px';

useEffect(() => {
setIsCollapsed(shouldToggle);
Expand Down Expand Up @@ -80,7 +82,7 @@ const LayoutProvider = ({ children }: LayoutProviderProps) => {
openSidePanel: () => setDisplaySidePanel(true),
},
size: {
sidebar: isTablet ? '280px' : '240px',
sidebar: isTablet ? '280px' : defaultSidebarWidth,
// eslint-disable-next-line no-nested-ternary
contextualBar: breakpoints.includes('sm') ? (breakpoints.includes('xl') ? '38%' : '380px') : '100%',
},
Expand All @@ -100,6 +102,7 @@ const LayoutProvider = ({ children }: LayoutProviderProps) => {
isCollapsed,
shouldToggle,
shouldDisplaySidePanel,
defaultSidebarWidth,
breakpoints,
hiddenActions,
router,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Divider, Box } from '@rocket.chat/fuselage';
import { Box } from '@rocket.chat/fuselage';
import { forwardRef } from 'react';
import type { Components } from 'react-virtuoso';

Expand All @@ -12,7 +12,6 @@ const RoomListFilters: Components['Header'] = forwardRef(function RoomListWrappe
return (
<Box ref={ref} display='flex' flexDirection='column'>
<TeamCollabFilters />
<Divider borderColor='stroke-light' mb={4} mi={16} />
{showOmnichannel && <OmnichannelFilters />}
</Box>
);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Box } from '@rocket.chat/fuselage';
import { Divider, Box } from '@rocket.chat/fuselage';
import { useSetting } from '@rocket.chat/ui-contexts';
import { useTranslation } from 'react-i18next';

Expand All @@ -10,11 +10,14 @@ const TeamCollabFilters = () => {
const isDiscussionEnabled = useSetting('Discussion_enabled');

return (
<Box role='tablist' aria-label={t('Team_collaboration_filters')} aria-orientation='vertical' mbs={8}>
<RoomListFiltersItem group='all' icon={sidePanelFiltersConfig.all.icon} />
<RoomListFiltersItem group='favorites' icon={sidePanelFiltersConfig.favorites.icon} />
{isDiscussionEnabled && <RoomListFiltersItem group='discussions' icon={sidePanelFiltersConfig.discussions.icon} />}
</Box>
<>
<Box role='tablist' aria-label={t('Team_collaboration_filters')} aria-orientation='vertical'>
<RoomListFiltersItem group='all' icon={sidePanelFiltersConfig.all.icon} />
<RoomListFiltersItem group='favorites' icon={sidePanelFiltersConfig.favorites.icon} />
{isDiscussionEnabled && <RoomListFiltersItem group='discussions' icon={sidePanelFiltersConfig.discussions.icon} />}
</Box>
<Divider borderColor='stroke-light' mb={4} mi={16} />
</>
);
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const useShortcutOpenMenu = (ref: RefObject<Element>): void => {
useEffect(() => {
const unsubscribe = tinykeys(ref.current as HTMLElement, {
Alt: (event) => {
if (!(event.target as HTMLElement).className.includes('rcx-sidebar-item')) {
if (!(event.target as HTMLElement).className.includes('rcx-sidebar-v2-item')) {
return;
}
event.preventDefault();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const SidePanel = ({ title, currentTab, unreadOnly, toggleUnreadOnly, rooms }: S
<ToggleSwitch id={unreadFieldId} checked={unreadOnly} onChange={toggleUnreadOnly} />
</Box>
</SidepanelHeader>
<Box pb={8} h='full' ref={ref}>
<Box h='full' ref={ref}>
{rooms && rooms.length === 0 && <SidePanelNoResults currentTab={currentTab} />}
<VirtualizedScrollbars>
<Virtuoso
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,14 @@ const SidePanelItem = ({
onPointerEnter={handlePointerEnter}
aria-label={title}
aria-selected={selected}
level={2}
>
<SidebarV2ItemCol>
<SidebarV2ItemRow>
{avatar && <SidebarV2ItemAvatarWrapper>{avatar}</SidebarV2ItemAvatarWrapper>}
{icon}
<SidebarV2ItemTitle unread={unread}>{title}</SidebarV2ItemTitle>
{time && <SidebarV2ItemTimestamp>{formatDate(time)}</SidebarV2ItemTimestamp>}
{time && <SidebarV2ItemTimestamp unread={unread}>{formatDate(time)}</SidebarV2ItemTimestamp>}
</SidebarV2ItemRow>
<SidebarV2ItemRow>
<SidebarV2ItemContent unread={unread}>{subtitle}</SidebarV2ItemContent>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
import { SidepanelList } from '@rocket.chat/fuselage';
import { useMergedRefs } from '@rocket.chat/fuselage-hooks';
import type { ForwardedRef, HTMLAttributes } from 'react';
import { forwardRef } from 'react';
import { useTranslation } from 'react-i18next';
import type { Components } from 'react-virtuoso';

import { useSidebarListNavigation } from '../../../sidebar/RoomList/useSidebarListNavigation';
import { useSidebarListNavigation } from '../sidebar/RoomList/useSidebarListNavigation';
Copy link

Copilot AI Aug 26, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The import path has been changed but appears incorrect. The path '../sidebar/RoomList/useSidebarListNavigation' suggests going up one level to 'sidebar', but from the sidepanel directory, the correct path should be '../../../sidebar/RoomList/useSidebarListNavigation' as it was originally.

Copilot uses AI. Check for mistakes.

type SidepanelListWrapperProps = HTMLAttributes<HTMLDivElement>;

const SidepanelListWrapper = forwardRef(function SidepanelListWrapper(props: SidepanelListWrapperProps, ref: ForwardedRef<HTMLDivElement>) {
const SidepanelListWrapper: Components['List'] = forwardRef(function SidepanelListWrapper(props, ref) {
const { t } = useTranslation();
const { sidebarListRef } = useSidebarListNavigation();
const mergedRefs = useMergedRefs(ref, sidebarListRef);
Expand Down
2 changes: 1 addition & 1 deletion apps/meteor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@
"@rocket.chat/emitter": "~0.31.25",
"@rocket.chat/favicon": "workspace:^",
"@rocket.chat/freeswitch": "workspace:^",
"@rocket.chat/fuselage": "^0.66.0",
"@rocket.chat/fuselage": "^0.66.3",
"@rocket.chat/fuselage-forms": "^0.1.0",
"@rocket.chat/fuselage-hooks": "^0.37.0",
"@rocket.chat/fuselage-polyfills": "~0.31.25",
Expand Down
2 changes: 1 addition & 1 deletion apps/uikit-playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@lezer/highlight": "^1.2.1",
"@rocket.chat/core-typings": "workspace:^",
"@rocket.chat/css-in-js": "~0.31.25",
"@rocket.chat/fuselage": "^0.66.0",
"@rocket.chat/fuselage": "^0.66.3",
"@rocket.chat/fuselage-hooks": "^0.37.0",
"@rocket.chat/fuselage-polyfills": "~0.31.25",
"@rocket.chat/fuselage-toastbar": "^0.35.0",
Expand Down
2 changes: 1 addition & 1 deletion ee/packages/ui-theming/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"devDependencies": {
"@rocket.chat/css-in-js": "~0.31.25",
"@rocket.chat/emitter": "~0.31.25",
"@rocket.chat/fuselage": "^0.66.0",
"@rocket.chat/fuselage": "^0.66.3",
"@rocket.chat/fuselage-hooks": "^0.37.0",
"@rocket.chat/fuselage-polyfills": "~0.31.25",
"@rocket.chat/fuselage-tokens": "~0.33.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/fuselage-ui-kit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"@rocket.chat/core-typings": "workspace:^",
"@rocket.chat/emitter": "~0.31.25",
"@rocket.chat/eslint-config": "workspace:^",
"@rocket.chat/fuselage": "^0.66.0",
"@rocket.chat/fuselage": "^0.66.3",
"@rocket.chat/fuselage-hooks": "^0.37.0",
"@rocket.chat/fuselage-polyfills": "~0.31.25",
"@rocket.chat/fuselage-tokens": "~0.33.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/gazzodown/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"@rocket.chat/core-typings": "workspace:^",
"@rocket.chat/css-in-js": "~0.31.25",
"@rocket.chat/emitter": "~0.31.25",
"@rocket.chat/fuselage": "^0.66.0",
"@rocket.chat/fuselage": "^0.66.3",
"@rocket.chat/fuselage-hooks": "^0.37.0",
"@rocket.chat/fuselage-polyfills": "~0.31.25",
"@rocket.chat/fuselage-tokens": "~0.33.2",
Expand Down
8 changes: 4 additions & 4 deletions packages/i18n/src/locales/en.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -3614,11 +3614,11 @@
"No_departments_yet_description": "Organize agents into departments, set how tickets get forwarded and monitor their performance.",
"No_direct_messages_yet": "No Direct Messages.",
"No_channels_or_discussions": "No channels or discussions",
"No_channels_or_discussions_description": "Channels and discussions belonging to this team will appear hear.",
"No_channels_or_discussions_description": "Channels and discussions belonging to this team will appear here.",
"No_discussions": "No discussions",
"No_discussions_description": "Discussions you've joined will appear hear.",
"No_discussions_channels_filter_description": "Discussions belonging to this channel will appear hear.",
"No_discussions_dms_filter_description": "Discussions belonging to this user will appear hear.",
"No_discussions_description": "Discussions youve joined will appear here.",
"No_discussions_channels_filter_description": "Discussions belonging to this channel will appear here.",
"No_discussions_dms_filter_description": "Discussions belonging to this user will appear here.",
"No_discussions_yet": "No discussions yet",
"No_emojis_found": "No emojis found",
"No_feature_to_preview": "No feature to preview",
Expand Down
2 changes: 1 addition & 1 deletion packages/storybook-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"devDependencies": {
"@rocket.chat/eslint-config": "workspace:~",
"@rocket.chat/fuselage": "^0.66.0",
"@rocket.chat/fuselage": "^0.66.3",
"@rocket.chat/icons": "^0.43.0",
"@rocket.chat/tsconfig": "workspace:*",
"@storybook/react": "^8.6.14",
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-avatar/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"@babel/core": "~7.26.10",
"@rocket.chat/core-typings": "workspace:~",
"@rocket.chat/emitter": "~0.31.25",
"@rocket.chat/fuselage": "^0.66.0",
"@rocket.chat/fuselage": "^0.66.3",
"@rocket.chat/fuselage-hooks": "^0.37.0",
"@rocket.chat/fuselage-polyfills": "~0.31.25",
"@rocket.chat/fuselage-tokens": "~0.33.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"@rocket.chat/core-typings": "workspace:~",
"@rocket.chat/css-in-js": "~0.31.25",
"@rocket.chat/emitter": "~0.31.25",
"@rocket.chat/fuselage": "^0.66.0",
"@rocket.chat/fuselage": "^0.66.3",
"@rocket.chat/fuselage-hooks": "^0.37.0",
"@rocket.chat/fuselage-polyfills": "~0.31.25",
"@rocket.chat/fuselage-tokens": "~0.33.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-composer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"@react-aria/toolbar": "^3.0.0-nightly.5042",
"@rocket.chat/emitter": "~0.31.25",
"@rocket.chat/eslint-config": "workspace:^",
"@rocket.chat/fuselage": "^0.66.0",
"@rocket.chat/fuselage": "^0.66.3",
"@rocket.chat/fuselage-hooks": "^0.37.0",
"@rocket.chat/fuselage-polyfills": "~0.31.25",
"@rocket.chat/fuselage-tokens": "~0.33.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-video-conf/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"@babel/core": "~7.26.10",
"@rocket.chat/css-in-js": "~0.31.25",
"@rocket.chat/eslint-config": "workspace:^",
"@rocket.chat/fuselage": "^0.66.0",
"@rocket.chat/fuselage": "^0.66.3",
"@rocket.chat/fuselage-hooks": "^0.37.0",
"@rocket.chat/fuselage-polyfills": "~0.31.25",
"@rocket.chat/fuselage-tokens": "~0.33.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-voip/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"@react-spectrum/test-utils": "~1.0.0-alpha.8",
"@rocket.chat/css-in-js": "~0.31.25",
"@rocket.chat/eslint-config": "workspace:^",
"@rocket.chat/fuselage": "^0.66.0",
"@rocket.chat/fuselage": "^0.66.3",
"@rocket.chat/fuselage-hooks": "^0.37.0",
"@rocket.chat/fuselage-polyfills": "~0.31.25",
"@rocket.chat/fuselage-tokens": "~0.33.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/web-ui-registration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"@rocket.chat/core-typings": "workspace:~",
"@rocket.chat/css-in-js": "~0.31.25",
"@rocket.chat/emitter": "~0.31.25",
"@rocket.chat/fuselage": "^0.66.0",
"@rocket.chat/fuselage": "^0.66.3",
"@rocket.chat/fuselage-hooks": "^0.37.0",
"@rocket.chat/fuselage-polyfills": "~0.31.25",
"@rocket.chat/fuselage-tokens": "~0.33.2",
Expand Down
34 changes: 17 additions & 17 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7389,7 +7389,7 @@ __metadata:
"@rocket.chat/core-typings": "workspace:^"
"@rocket.chat/emitter": "npm:~0.31.25"
"@rocket.chat/eslint-config": "workspace:^"
"@rocket.chat/fuselage": "npm:^0.66.0"
"@rocket.chat/fuselage": "npm:^0.66.3"
"@rocket.chat/fuselage-hooks": "npm:^0.37.0"
"@rocket.chat/fuselage-polyfills": "npm:~0.31.25"
"@rocket.chat/fuselage-tokens": "npm:~0.33.2"
Expand Down Expand Up @@ -7451,9 +7451,9 @@ __metadata:
languageName: unknown
linkType: soft

"@rocket.chat/fuselage@npm:^0.66.0":
version: 0.66.0
resolution: "@rocket.chat/fuselage@npm:0.66.0"
"@rocket.chat/fuselage@npm:^0.66.3":
version: 0.66.3
resolution: "@rocket.chat/fuselage@npm:0.66.3"
dependencies:
"@rocket.chat/css-in-js": "npm:^0.31.25"
"@rocket.chat/css-supports": "npm:^0.31.25"
Expand All @@ -7471,7 +7471,7 @@ __metadata:
react: "*"
react-dom: "*"
react-virtuoso: "*"
checksum: 10/5a4c1b1edf6e75ff609c7cc2fd3bf34bc0e7e8a344dbf01decb4cfc38a048c40c2226aab5830d4048eff42b8ed788278b0248cc4ce9ddbc36702190c2188cae0
checksum: 10/874f7d4158a1780fac526b855ccedaca7fec76c0ab08e8c3a902b298bd4b26a30ee918b765493ba2438defd50798bfe030702662644e7985d2a8f44d1c5e63f4
languageName: node
linkType: hard

Expand All @@ -7483,7 +7483,7 @@ __metadata:
"@rocket.chat/core-typings": "workspace:^"
"@rocket.chat/css-in-js": "npm:~0.31.25"
"@rocket.chat/emitter": "npm:~0.31.25"
"@rocket.chat/fuselage": "npm:^0.66.0"
"@rocket.chat/fuselage": "npm:^0.66.3"
"@rocket.chat/fuselage-hooks": "npm:^0.37.0"
"@rocket.chat/fuselage-polyfills": "npm:~0.31.25"
"@rocket.chat/fuselage-tokens": "npm:~0.33.2"
Expand Down Expand Up @@ -7901,7 +7901,7 @@ __metadata:
"@rocket.chat/eslint-config": "workspace:^"
"@rocket.chat/favicon": "workspace:^"
"@rocket.chat/freeswitch": "workspace:^"
"@rocket.chat/fuselage": "npm:^0.66.0"
"@rocket.chat/fuselage": "npm:^0.66.3"
"@rocket.chat/fuselage-forms": "npm:^0.1.0"
"@rocket.chat/fuselage-hooks": "npm:^0.37.0"
"@rocket.chat/fuselage-polyfills": "npm:~0.31.25"
Expand Down Expand Up @@ -8808,7 +8808,7 @@ __metadata:
dependencies:
"@rocket.chat/emitter": "npm:~0.31.25"
"@rocket.chat/eslint-config": "workspace:~"
"@rocket.chat/fuselage": "npm:^0.66.0"
"@rocket.chat/fuselage": "npm:^0.66.3"
"@rocket.chat/fuselage-hooks": "npm:^0.37.0"
"@rocket.chat/fuselage-polyfills": "npm:~0.31.25"
"@rocket.chat/fuselage-tokens": "npm:~0.33.2"
Expand Down Expand Up @@ -8944,7 +8944,7 @@ __metadata:
"@babel/core": "npm:~7.26.10"
"@rocket.chat/core-typings": "workspace:~"
"@rocket.chat/emitter": "npm:~0.31.25"
"@rocket.chat/fuselage": "npm:^0.66.0"
"@rocket.chat/fuselage": "npm:^0.66.3"
"@rocket.chat/fuselage-hooks": "npm:^0.37.0"
"@rocket.chat/fuselage-polyfills": "npm:~0.31.25"
"@rocket.chat/fuselage-tokens": "npm:~0.33.2"
Expand Down Expand Up @@ -8977,7 +8977,7 @@ __metadata:
"@rocket.chat/core-typings": "workspace:~"
"@rocket.chat/css-in-js": "npm:~0.31.25"
"@rocket.chat/emitter": "npm:~0.31.25"
"@rocket.chat/fuselage": "npm:^0.66.0"
"@rocket.chat/fuselage": "npm:^0.66.3"
"@rocket.chat/fuselage-hooks": "npm:^0.37.0"
"@rocket.chat/fuselage-polyfills": "npm:~0.31.25"
"@rocket.chat/fuselage-tokens": "npm:~0.33.2"
Expand Down Expand Up @@ -9031,7 +9031,7 @@ __metadata:
"@react-aria/toolbar": "npm:^3.0.0-nightly.5042"
"@rocket.chat/emitter": "npm:~0.31.25"
"@rocket.chat/eslint-config": "workspace:^"
"@rocket.chat/fuselage": "npm:^0.66.0"
"@rocket.chat/fuselage": "npm:^0.66.3"
"@rocket.chat/fuselage-hooks": "npm:^0.37.0"
"@rocket.chat/fuselage-polyfills": "npm:~0.31.25"
"@rocket.chat/fuselage-tokens": "npm:~0.33.2"
Expand Down Expand Up @@ -9134,7 +9134,7 @@ __metadata:
dependencies:
"@rocket.chat/css-in-js": "npm:~0.31.25"
"@rocket.chat/emitter": "npm:~0.31.25"
"@rocket.chat/fuselage": "npm:^0.66.0"
"@rocket.chat/fuselage": "npm:^0.66.3"
"@rocket.chat/fuselage-hooks": "npm:^0.37.0"
"@rocket.chat/fuselage-polyfills": "npm:~0.31.25"
"@rocket.chat/fuselage-tokens": "npm:~0.33.2"
Expand Down Expand Up @@ -9170,7 +9170,7 @@ __metadata:
"@rocket.chat/css-in-js": "npm:~0.31.25"
"@rocket.chat/emitter": "npm:~0.31.25"
"@rocket.chat/eslint-config": "workspace:^"
"@rocket.chat/fuselage": "npm:^0.66.0"
"@rocket.chat/fuselage": "npm:^0.66.3"
"@rocket.chat/fuselage-hooks": "npm:^0.37.0"
"@rocket.chat/fuselage-polyfills": "npm:~0.31.25"
"@rocket.chat/fuselage-tokens": "npm:~0.33.2"
Expand Down Expand Up @@ -9228,7 +9228,7 @@ __metadata:
"@rocket.chat/css-in-js": "npm:~0.31.25"
"@rocket.chat/emitter": "npm:~0.31.25"
"@rocket.chat/eslint-config": "workspace:^"
"@rocket.chat/fuselage": "npm:^0.66.0"
"@rocket.chat/fuselage": "npm:^0.66.3"
"@rocket.chat/fuselage-hooks": "npm:^0.37.0"
"@rocket.chat/fuselage-polyfills": "npm:~0.31.25"
"@rocket.chat/fuselage-tokens": "npm:~0.33.2"
Expand Down Expand Up @@ -9298,7 +9298,7 @@ __metadata:
"@rocket.chat/core-typings": "workspace:^"
"@rocket.chat/css-in-js": "npm:~0.31.25"
"@rocket.chat/emitter": "npm:~0.31.25"
"@rocket.chat/fuselage": "npm:^0.66.0"
"@rocket.chat/fuselage": "npm:^0.66.3"
"@rocket.chat/fuselage-hooks": "npm:^0.37.0"
"@rocket.chat/fuselage-polyfills": "npm:~0.31.25"
"@rocket.chat/fuselage-toastbar": "npm:^0.35.0"
Expand Down Expand Up @@ -9348,7 +9348,7 @@ __metadata:
"@rocket.chat/core-typings": "workspace:~"
"@rocket.chat/css-in-js": "npm:~0.31.25"
"@rocket.chat/emitter": "npm:~0.31.25"
"@rocket.chat/fuselage": "npm:^0.66.0"
"@rocket.chat/fuselage": "npm:^0.66.3"
"@rocket.chat/fuselage-hooks": "npm:^0.37.0"
"@rocket.chat/fuselage-polyfills": "npm:~0.31.25"
"@rocket.chat/fuselage-tokens": "npm:~0.33.2"
Expand Down Expand Up @@ -9387,7 +9387,7 @@ __metadata:
peerDependencies:
"@rocket.chat/layout": "*"
"@rocket.chat/tools": 0.2.3
"@rocket.chat/ui-contexts": 22.0.0-rc.1
"@rocket.chat/ui-contexts": 22.0.0-rc.2
"@tanstack/react-query": "*"
react: "*"
react-hook-form: "*"
Expand Down
Loading