diff --git a/apps/meteor/client/components/UserStatusMenu.tsx b/apps/meteor/client/components/UserStatusMenu.tsx index db91152bc84..7aa1d8be1fb 100644 --- a/apps/meteor/client/components/UserStatusMenu.tsx +++ b/apps/meteor/client/components/UserStatusMenu.tsx @@ -63,7 +63,6 @@ const UserStatusMenu = ({ } ref.current.focus(); show(); - ref.current.classList.add('focus-visible'); }, [show]); const handleSelection = useCallback( diff --git a/apps/meteor/client/main.ts b/apps/meteor/client/main.ts index 117f1a312e9..bbc9c124050 100644 --- a/apps/meteor/client/main.ts +++ b/apps/meteor/client/main.ts @@ -2,8 +2,7 @@ import './meteor/overrides'; import './meteor/startup'; import './serviceWorker'; -import('@rocket.chat/fuselage-polyfills') - .then(() => import('./meteor/login')) +import('./meteor/login') .then(() => import('./ecdh')) .then(() => import('./importPackages')) .then(() => import('./startup')) diff --git a/apps/meteor/client/sidebar/RoomList/useSidebarListNavigation.ts b/apps/meteor/client/sidebar/RoomList/useSidebarListNavigation.ts index 57cb12fcd44..baad06280ca 100644 --- a/apps/meteor/client/sidebar/RoomList/useSidebarListNavigation.ts +++ b/apps/meteor/client/sidebar/RoomList/useSidebarListNavigation.ts @@ -64,7 +64,7 @@ export const useSidebarListNavigation = () => { 'blur', (e) => { if ( - !(e.relatedTarget as HTMLElement)?.classList.contains('focus-visible') || + !(e.relatedTarget as HTMLElement)?.matches(':focus-visible') || !(e.currentTarget instanceof HTMLElement && e.relatedTarget instanceof HTMLElement) ) { return; @@ -80,7 +80,7 @@ export const useSidebarListNavigation = () => { node.addEventListener( 'focus', (e) => { - const triggeredByKeyboard = (e.target as HTMLElement)?.classList.contains('focus-visible'); + const triggeredByKeyboard = (e.target as HTMLElement)?.matches(':focus-visible'); if (!triggeredByKeyboard || !(e.currentTarget instanceof HTMLElement && e.relatedTarget instanceof HTMLElement)) { return; } diff --git a/apps/meteor/client/sidebarv2/RoomList/useSidebarListNavigation.ts b/apps/meteor/client/sidebarv2/RoomList/useSidebarListNavigation.ts index 6ebce12cac2..3f6ee5062a2 100644 --- a/apps/meteor/client/sidebarv2/RoomList/useSidebarListNavigation.ts +++ b/apps/meteor/client/sidebarv2/RoomList/useSidebarListNavigation.ts @@ -68,7 +68,7 @@ export const useSidebarListNavigation = () => { 'blur', (e) => { if ( - !(e.relatedTarget as HTMLElement)?.classList.contains('focus-visible') || + !(e.relatedTarget as HTMLElement)?.matches(':focus-visible') || !(e.currentTarget instanceof HTMLElement && e.relatedTarget instanceof HTMLElement) ) { return; @@ -84,7 +84,7 @@ export const useSidebarListNavigation = () => { node.addEventListener( 'focus', (e) => { - const triggeredByKeyboard = (e.target as HTMLElement)?.classList.contains('focus-visible'); + const triggeredByKeyboard = (e.target as HTMLElement)?.matches(':focus-visible'); if (!triggeredByKeyboard || !(e.currentTarget instanceof HTMLElement && e.relatedTarget instanceof HTMLElement)) { return; } diff --git a/apps/meteor/client/views/composer/EmojiPicker/ToneSelector/ToneSelector.tsx b/apps/meteor/client/views/composer/EmojiPicker/ToneSelector/ToneSelector.tsx index 8429022ccf0..810022e93cc 100644 --- a/apps/meteor/client/views/composer/EmojiPicker/ToneSelector/ToneSelector.tsx +++ b/apps/meteor/client/views/composer/EmojiPicker/ToneSelector/ToneSelector.tsx @@ -34,7 +34,6 @@ const ToneSelector = ({ tone, setTone }: { tone: number; setTone: (tone: number) } ref.current.focus(); show(); - ref.current.classList.add('focus-visible'); }, [show]); const handleSelection = useCallback( diff --git a/apps/meteor/client/views/navigation/sidebar/RoomList/useSidebarListNavigation.ts b/apps/meteor/client/views/navigation/sidebar/RoomList/useSidebarListNavigation.ts index 759c00f5652..ad345bd95a4 100644 --- a/apps/meteor/client/views/navigation/sidebar/RoomList/useSidebarListNavigation.ts +++ b/apps/meteor/client/views/navigation/sidebar/RoomList/useSidebarListNavigation.ts @@ -69,7 +69,7 @@ export const useSidebarListNavigation = () => { 'blur', (e) => { if ( - !(e.relatedTarget as HTMLElement)?.classList.contains('focus-visible') || + !(e.relatedTarget as HTMLElement)?.matches(':focus-visible') || !(e.currentTarget instanceof HTMLElement && e.relatedTarget instanceof HTMLElement) ) { return; @@ -85,7 +85,7 @@ export const useSidebarListNavigation = () => { node.addEventListener( 'focus', (e) => { - const triggeredByKeyboard = (e.target as HTMLElement)?.classList.contains('focus-visible'); + const triggeredByKeyboard = (e.target as HTMLElement)?.matches(':focus-visible'); if (!triggeredByKeyboard || !(e.currentTarget instanceof HTMLElement && e.relatedTarget instanceof HTMLElement)) { return; } diff --git a/apps/meteor/client/views/room/hooks/useMessageListNavigation.ts b/apps/meteor/client/views/room/hooks/useMessageListNavigation.ts index a267097399f..6dc77e6f94c 100644 --- a/apps/meteor/client/views/room/hooks/useMessageListNavigation.ts +++ b/apps/meteor/client/views/room/hooks/useMessageListNavigation.ts @@ -73,7 +73,7 @@ export const useMessageListNavigation = (): { messageListRef: RefCallback { if ( - !(e.relatedTarget as HTMLElement)?.classList.contains('focus-visible') || + !(e.relatedTarget as HTMLElement)?.matches(':focus-visible') || !(e.currentTarget instanceof HTMLElement && e.relatedTarget instanceof HTMLElement) ) { return; @@ -89,7 +89,7 @@ export const useMessageListNavigation = (): { messageListRef: RefCallback { - const triggeredByKeyboard = (e.target as HTMLElement)?.classList.contains('focus-visible'); + const triggeredByKeyboard = (e.target as HTMLElement)?.matches(':focus-visible'); if (!triggeredByKeyboard || !(e.currentTarget instanceof HTMLElement && e.relatedTarget instanceof HTMLElement)) { return; } diff --git a/apps/meteor/ee/server/services/package.json b/apps/meteor/ee/server/services/package.json index 209bf5314c9..ab7a0fd449a 100644 --- a/apps/meteor/ee/server/services/package.json +++ b/apps/meteor/ee/server/services/package.json @@ -48,7 +48,7 @@ "ws": "~8.18.3" }, "devDependencies": { - "@rocket.chat/icons": "^0.45.0", + "@rocket.chat/icons": "~0.45.0", "@types/cookie": "^0.5.4", "@types/cookie-parser": "^1.4.10", "@types/ejson": "^2.2.2", diff --git a/apps/meteor/package.json b/apps/meteor/package.json index 3127ea7011c..a792f9cbeac 100644 --- a/apps/meteor/package.json +++ b/apps/meteor/package.json @@ -254,11 +254,10 @@ "@rocket.chat/federation-matrix": "workspace:^", "@rocket.chat/federation-sdk": "0.3.0", "@rocket.chat/freeswitch": "workspace:^", - "@rocket.chat/fuselage": "^0.68.1", + "@rocket.chat/fuselage": "~0.68.1", "@rocket.chat/fuselage-forms": "~0.1.1", - "@rocket.chat/fuselage-hooks": "~0.37.2", - "@rocket.chat/fuselage-polyfills": "~0.31.25", - "@rocket.chat/fuselage-toastbar": "^0.35.1", + "@rocket.chat/fuselage-hooks": "~0.38.1", + "@rocket.chat/fuselage-toastbar": "~0.35.1", "@rocket.chat/fuselage-tokens": "~0.33.2", "@rocket.chat/fuselage-ui-kit": "workspace:^", "@rocket.chat/gazzodown": "workspace:^", @@ -267,7 +266,7 @@ "@rocket.chat/icons": "~0.45.0", "@rocket.chat/instance-status": "workspace:^", "@rocket.chat/jwt": "workspace:^", - "@rocket.chat/layout": "^0.33.1", + "@rocket.chat/layout": "~0.34.0", "@rocket.chat/license": "workspace:^", "@rocket.chat/log-format": "workspace:^", "@rocket.chat/logger": "workspace:^", @@ -285,7 +284,7 @@ "@rocket.chat/omni-core": "workspace:^", "@rocket.chat/omni-core-ee": "workspace:^", "@rocket.chat/omnichannel-services": "workspace:^", - "@rocket.chat/onboarding-ui": "^0.35.2", + "@rocket.chat/onboarding-ui": "~0.36.0", "@rocket.chat/password-policies": "workspace:^", "@rocket.chat/patch-injection": "workspace:^", "@rocket.chat/pdf-worker": "workspace:^", diff --git a/apps/meteor/tests/e2e/settings-persistence-on-ui-navigation.spec.ts b/apps/meteor/tests/e2e/settings-persistence-on-ui-navigation.spec.ts index f2610d54cd9..a3b1daebcd4 100644 --- a/apps/meteor/tests/e2e/settings-persistence-on-ui-navigation.spec.ts +++ b/apps/meteor/tests/e2e/settings-persistence-on-ui-navigation.spec.ts @@ -25,15 +25,19 @@ test.describe.serial('settings-persistence-on-ui-navigation', () => { test.afterAll(({ api }) => setSettingValueById(api, 'Hide_System_Messages', [])); - test('expect settings to persist in ui when navigating back and forth', async ({ page }) => { - const settingInput = await page.locator('[data-qa-setting-id="Hide_System_Messages"] input'); + test.skip('expect settings to persist in ui when navigating back and forth', async ({ page }) => { + const settingInput = page.locator('[data-qa-setting-id="Hide_System_Messages"] input'); await settingInput.pressSequentially('User joined'); await settingInput.press('Enter'); + const responsePromise = page.waitForResponse( + (response) => response.url().includes('/api/v1/method.call/saveSettings') && response.status() === 200, + ); + await page.locator('button:has-text("Save changes")').click(); await page.locator('button[title="Back"]').click(); - await page.waitForResponse((response) => response.url().includes('/api/v1/method.call/saveSettings') && response.status() === 200); + await responsePromise; await page.locator('a[href="/admin/settings/Message"] >> text=Open').click(); diff --git a/apps/uikit-playground/package.json b/apps/uikit-playground/package.json index d9311f59624..5cea838d160 100644 --- a/apps/uikit-playground/package.json +++ b/apps/uikit-playground/package.json @@ -18,13 +18,12 @@ "@lezer/highlight": "^1.2.3", "@rocket.chat/core-typings": "workspace:^", "@rocket.chat/css-in-js": "~0.31.25", - "@rocket.chat/fuselage": "^0.68.1", - "@rocket.chat/fuselage-hooks": "~0.37.2", - "@rocket.chat/fuselage-polyfills": "~0.31.25", - "@rocket.chat/fuselage-toastbar": "^0.35.1", + "@rocket.chat/fuselage": "~0.68.1", + "@rocket.chat/fuselage-hooks": "~0.38.1", + "@rocket.chat/fuselage-toastbar": "~0.35.1", "@rocket.chat/fuselage-tokens": "~0.33.2", "@rocket.chat/fuselage-ui-kit": "workspace:~", - "@rocket.chat/icons": "^0.45.0", + "@rocket.chat/icons": "~0.45.0", "@rocket.chat/logo": "~0.32.3", "@rocket.chat/styled": "~0.32.0", "@rocket.chat/ui-avatar": "workspace:^", diff --git a/ee/packages/federation-matrix/package.json b/ee/packages/federation-matrix/package.json index e73e1c3ad06..7422c31c134 100644 --- a/ee/packages/federation-matrix/package.json +++ b/ee/packages/federation-matrix/package.json @@ -41,7 +41,7 @@ "dependencies": { "@rocket.chat/core-services": "workspace:^", "@rocket.chat/core-typings": "workspace:^", - "@rocket.chat/emitter": "^0.31.25", + "@rocket.chat/emitter": "~0.31.25", "@rocket.chat/federation-sdk": "0.3.0", "@rocket.chat/http-router": "workspace:^", "@rocket.chat/license": "workspace:^", diff --git a/ee/packages/ui-theming/package.json b/ee/packages/ui-theming/package.json index a09179f0510..a69a92cfe90 100644 --- a/ee/packages/ui-theming/package.json +++ b/ee/packages/ui-theming/package.json @@ -5,11 +5,10 @@ "devDependencies": { "@rocket.chat/css-in-js": "~0.31.25", "@rocket.chat/emitter": "~0.31.25", - "@rocket.chat/fuselage": "^0.68.1", - "@rocket.chat/fuselage-hooks": "~0.37.2", - "@rocket.chat/fuselage-polyfills": "~0.31.25", + "@rocket.chat/fuselage": "~0.68.1", + "@rocket.chat/fuselage-hooks": "~0.38.1", "@rocket.chat/fuselage-tokens": "~0.33.2", - "@rocket.chat/icons": "^0.45.0", + "@rocket.chat/icons": "~0.45.0", "@rocket.chat/ui-contexts": "workspace:~", "@types/react": "~18.3.26", "@types/react-dom": "~18.3.7", diff --git a/fuselage.sh b/fuselage.sh index fdcd559a3b5..ee607585b00 100755 --- a/fuselage.sh +++ b/fuselage.sh @@ -81,7 +81,6 @@ if [[ $action == "next-all" || $action == "latest-all" ]]; then fi echo "📦 @rocket.chat/emitter [UPDATING to $targetVersion version...] -📦 @rocket.chat/fuselage-polyfills [UPDATING to $targetVersion version...] 📦 @rocket.chat/fuselage-toastbar [UPDATING to $targetVersion version...] 📦 @rocket.chat/fuselage-tokens [UPDATING to $targetVersion version...] 📦 @rocket.chat/css-in-js [UPDATING to $targetVersion version...] @@ -91,13 +90,11 @@ echo "📦 @rocket.chat/emitter [UPDATING to $targetVersion version...] 📦 @rocket.chat/icons [UPDATING to $targetVersion version...] 📦 @rocket.chat/logo [UPDATING to $targetVersion version...] 📦 @rocket.chat/memo [UPDATING to $targetVersion version...] -📦 @rocket.chat/message-parser [UPDATING to $targetVersion version...] 📦 @rocket.chat/onboarding-ui [UPDATING to $targetVersion version...] 📦 @rocket.chat/string-helpers [UPDATING to $targetVersion version...] 📦 @rocket.chat/layout [UPDATING to $targetVersion version...] -📦 @rocket.chat/message-parser [UPDATING to $targetVersion version...]" - eval "yarn up @rocket.chat/emitter@$targetVersion @rocket.chat/fuselage-polyfills@$targetVersion @rocket.chat/fuselage-toastbar@$targetVersion @rocket.chat/fuselage-tokens@$targetVersion @rocket.chat/css-in-js@$targetVersion @rocket.chat/styled@$targetVersion @rocket.chat/fuselage@$targetVersion @rocket.chat/fuselage-hooks@$targetVersion @rocket.chat/icons@$targetVersion @rocket.chat/logo@$targetVersion @rocket.chat/memo@$targetVersion @rocket.chat/message-parser@$targetVersion @rocket.chat/onboarding-ui@$targetVersion @rocket.chat/string-helpers@$targetVersion @rocket.chat/layout@$targetVersion @rocket.chat/message-parser@$targetVersion" + eval "yarn up @rocket.chat/emitter@$targetVersion @rocket.chat/fuselage-toastbar@$targetVersion @rocket.chat/fuselage-tokens@$targetVersion @rocket.chat/css-in-js@$targetVersion @rocket.chat/styled@$targetVersion @rocket.chat/fuselage@$targetVersion @rocket.chat/fuselage-hooks@$targetVersion @rocket.chat/icons@$targetVersion @rocket.chat/logo@$targetVersion @rocket.chat/memo@$targetVersion @rocket.chat/onboarding-ui@$targetVersion @rocket.chat/string-helpers@$targetVersion @rocket.chat/layout@$targetVersion" exit 1 fi diff --git a/packages/core-services/package.json b/packages/core-services/package.json index 566c62c04b6..3202d86825d 100644 --- a/packages/core-services/package.json +++ b/packages/core-services/package.json @@ -37,7 +37,7 @@ "@rocket.chat/core-typings": "workspace:^", "@rocket.chat/federation-sdk": "0.3.0", "@rocket.chat/http-router": "workspace:^", - "@rocket.chat/icons": "^0.45.0", + "@rocket.chat/icons": "~0.45.0", "@rocket.chat/media-signaling": "workspace:^", "@rocket.chat/message-parser": "workspace:^", "@rocket.chat/models": "workspace:^", diff --git a/packages/core-typings/package.json b/packages/core-typings/package.json index b427e0cff2e..256996a3c87 100644 --- a/packages/core-typings/package.json +++ b/packages/core-typings/package.json @@ -31,7 +31,7 @@ "/dist" ], "dependencies": { - "@rocket.chat/icons": "^0.45.0", + "@rocket.chat/icons": "~0.45.0", "@rocket.chat/message-parser": "workspace:^", "@rocket.chat/ui-kit": "workspace:~", "typia": "~9.7.2" diff --git a/packages/gazzodown/package.json b/packages/gazzodown/package.json index f5fbd9b0578..e14cbde444c 100644 --- a/packages/gazzodown/package.json +++ b/packages/gazzodown/package.json @@ -32,11 +32,10 @@ "@rocket.chat/core-typings": "workspace:^", "@rocket.chat/css-in-js": "~0.31.25", "@rocket.chat/emitter": "~0.31.25", - "@rocket.chat/fuselage": "^0.68.1", - "@rocket.chat/fuselage-hooks": "~0.37.2", - "@rocket.chat/fuselage-polyfills": "~0.31.25", + "@rocket.chat/fuselage": "~0.68.1", + "@rocket.chat/fuselage-hooks": "~0.38.1", "@rocket.chat/fuselage-tokens": "~0.33.2", - "@rocket.chat/icons": "^0.45.0", + "@rocket.chat/icons": "~0.45.0", "@rocket.chat/jest-presets": "workspace:~", "@rocket.chat/message-parser": "workspace:^", "@rocket.chat/styled": "~0.32.0", diff --git a/packages/livechat/package.json b/packages/livechat/package.json index f7f967ad08f..c5a3f55e509 100644 --- a/packages/livechat/package.json +++ b/packages/livechat/package.json @@ -32,7 +32,7 @@ "@rocket.chat/core-typings": "workspace:^", "@rocket.chat/ddp-client": "workspace:^", "@rocket.chat/eslint-config": "workspace:^", - "@rocket.chat/fuselage-hooks": "~0.37.2", + "@rocket.chat/fuselage-hooks": "~0.38.1", "@rocket.chat/fuselage-tokens": "~0.33.2", "@rocket.chat/logo": "~0.32.3", "@rocket.chat/ui-contexts": "workspace:^", diff --git a/packages/storybook-config/package.json b/packages/storybook-config/package.json index a6452018fa6..2b877b92e22 100644 --- a/packages/storybook-config/package.json +++ b/packages/storybook-config/package.json @@ -4,8 +4,7 @@ "private": true, "dependencies": { "@rocket.chat/emitter": "~0.31.25", - "@rocket.chat/fuselage-hooks": "~0.37.2", - "@rocket.chat/fuselage-polyfills": "~0.31.25", + "@rocket.chat/fuselage-hooks": "~0.38.1", "@rocket.chat/fuselage-tokens": "~0.33.2", "@storybook/addon-a11y": "^8.6.14", "@storybook/addon-essentials": "^8.6.14", @@ -22,8 +21,8 @@ }, "devDependencies": { "@rocket.chat/eslint-config": "workspace:~", - "@rocket.chat/fuselage": "^0.68.1", - "@rocket.chat/icons": "^0.45.0", + "@rocket.chat/fuselage": "~0.68.1", + "@rocket.chat/icons": "~0.45.0", "@rocket.chat/tsconfig": "workspace:*", "@storybook/react": "^8.6.14", "eslint": "~8.45.0", diff --git a/packages/ui-avatar/package.json b/packages/ui-avatar/package.json index 15e6ec207c7..8faba0286ed 100644 --- a/packages/ui-avatar/package.json +++ b/packages/ui-avatar/package.json @@ -6,11 +6,10 @@ "@babel/core": "~7.28.5", "@rocket.chat/core-typings": "workspace:~", "@rocket.chat/emitter": "~0.31.25", - "@rocket.chat/fuselage": "^0.68.1", - "@rocket.chat/fuselage-hooks": "~0.37.2", - "@rocket.chat/fuselage-polyfills": "~0.31.25", + "@rocket.chat/fuselage": "~0.68.1", + "@rocket.chat/fuselage-hooks": "~0.38.1", "@rocket.chat/fuselage-tokens": "~0.33.2", - "@rocket.chat/icons": "^0.45.0", + "@rocket.chat/icons": "~0.45.0", "@rocket.chat/ui-contexts": "workspace:^", "@types/react": "~18.3.26", "@types/react-dom": "~18.3.7", diff --git a/packages/ui-client/package.json b/packages/ui-client/package.json index 99436af75b9..1da04ff1f3c 100644 --- a/packages/ui-client/package.json +++ b/packages/ui-client/package.json @@ -23,11 +23,10 @@ "@rocket.chat/core-typings": "workspace:~", "@rocket.chat/css-in-js": "~0.31.25", "@rocket.chat/emitter": "~0.31.25", - "@rocket.chat/fuselage": "^0.68.1", - "@rocket.chat/fuselage-hooks": "~0.37.2", - "@rocket.chat/fuselage-polyfills": "~0.31.25", + "@rocket.chat/fuselage": "~0.68.1", + "@rocket.chat/fuselage-hooks": "~0.38.1", "@rocket.chat/fuselage-tokens": "~0.33.2", - "@rocket.chat/icons": "^0.45.0", + "@rocket.chat/icons": "~0.45.0", "@rocket.chat/jest-presets": "workspace:~", "@rocket.chat/mock-providers": "workspace:^", "@rocket.chat/storybook-config": "workspace:~", diff --git a/packages/ui-client/src/components/Header/HeaderTitleButton.tsx b/packages/ui-client/src/components/Header/HeaderTitleButton.tsx index c27f20ac9e0..cdfad6c88f0 100644 --- a/packages/ui-client/src/components/Header/HeaderTitleButton.tsx +++ b/packages/ui-client/src/components/Header/HeaderTitleButton.tsx @@ -12,7 +12,7 @@ const HeaderTitleButton = ({ className, ...props }: { className?: string } & Com cursor: pointer; background-color: ${Palette.surface['surface-hover']}; } - &:focus.focus-visible { + &:focus-visible { outline: 0; box-shadow: 0 0 0 2px ${Palette.stroke['stroke-extra-light-highlight']}; border-color: ${Palette.stroke['stroke-highlight']}; diff --git a/packages/ui-client/src/components/HeaderV2/HeaderTitleButton.tsx b/packages/ui-client/src/components/HeaderV2/HeaderTitleButton.tsx index 57a43b44b36..abc0dc447ca 100644 --- a/packages/ui-client/src/components/HeaderV2/HeaderTitleButton.tsx +++ b/packages/ui-client/src/components/HeaderV2/HeaderTitleButton.tsx @@ -14,7 +14,7 @@ const HeaderTitleButton = ({ className, ...props }: HeaderTitleButtonProps) => { cursor: pointer; background-color: ${Palette.surface['surface-hover']}; } - &:focus.focus-visible { + &:focus-visible { outline: 0; box-shadow: 0 0 0 2px ${Palette.stroke['stroke-extra-light-highlight']}; border-color: ${Palette.stroke['stroke-highlight']}; diff --git a/packages/ui-composer/package.json b/packages/ui-composer/package.json index d2fc950d3ab..9608675abb9 100644 --- a/packages/ui-composer/package.json +++ b/packages/ui-composer/package.json @@ -24,11 +24,10 @@ "@react-aria/toolbar": "^3.0.0-nightly.5042", "@rocket.chat/emitter": "~0.31.25", "@rocket.chat/eslint-config": "workspace:^", - "@rocket.chat/fuselage": "^0.68.1", - "@rocket.chat/fuselage-hooks": "~0.37.2", - "@rocket.chat/fuselage-polyfills": "~0.31.25", + "@rocket.chat/fuselage": "~0.68.1", + "@rocket.chat/fuselage-hooks": "~0.38.1", "@rocket.chat/fuselage-tokens": "~0.33.2", - "@rocket.chat/icons": "^0.45.0", + "@rocket.chat/icons": "~0.45.0", "@rocket.chat/jest-presets": "workspace:~", "@rocket.chat/tsconfig": "workspace:*", "@storybook/addon-a11y": "^8.6.14", diff --git a/packages/ui-contexts/package.json b/packages/ui-contexts/package.json index 393d4322ecd..a64b4fd682b 100644 --- a/packages/ui-contexts/package.json +++ b/packages/ui-contexts/package.json @@ -6,7 +6,7 @@ "@rocket.chat/core-typings": "workspace:^", "@rocket.chat/ddp-client": "workspace:~", "@rocket.chat/emitter": "~0.31.25", - "@rocket.chat/fuselage-hooks": "~0.37.2", + "@rocket.chat/fuselage-hooks": "~0.38.1", "@rocket.chat/fuselage-tokens": "~0.33.2", "@rocket.chat/i18n": "workspace:~", "@rocket.chat/jest-presets": "workspace:~", diff --git a/packages/ui-kit/package.json b/packages/ui-kit/package.json index 5a0073e333b..6f37135ff1f 100644 --- a/packages/ui-kit/package.json +++ b/packages/ui-kit/package.json @@ -40,7 +40,7 @@ "@babel/plugin-transform-runtime": "~7.28.5", "@babel/preset-env": "~7.28.5", "@rocket.chat/eslint-config": "workspace:~", - "@rocket.chat/icons": "^0.45.0", + "@rocket.chat/icons": "~0.45.0", "@rocket.chat/jest-presets": "workspace:~", "@rocket.chat/tsconfig": "workspace:*", "@types/jest": "~30.0.0", diff --git a/packages/ui-video-conf/package.json b/packages/ui-video-conf/package.json index 56252c20998..fdbdf4b1723 100644 --- a/packages/ui-video-conf/package.json +++ b/packages/ui-video-conf/package.json @@ -24,11 +24,10 @@ "@babel/core": "~7.28.5", "@rocket.chat/css-in-js": "~0.31.25", "@rocket.chat/eslint-config": "workspace:^", - "@rocket.chat/fuselage": "^0.68.1", - "@rocket.chat/fuselage-hooks": "~0.37.2", - "@rocket.chat/fuselage-polyfills": "~0.31.25", + "@rocket.chat/fuselage": "~0.68.1", + "@rocket.chat/fuselage-hooks": "~0.38.1", "@rocket.chat/fuselage-tokens": "~0.33.2", - "@rocket.chat/icons": "^0.45.0", + "@rocket.chat/icons": "~0.45.0", "@rocket.chat/jest-presets": "workspace:~", "@rocket.chat/styled": "~0.32.0", "@rocket.chat/tsconfig": "workspace:*", diff --git a/packages/ui-voip/package.json b/packages/ui-voip/package.json index 7fdb5ec5147..95a009f5a2c 100644 --- a/packages/ui-voip/package.json +++ b/packages/ui-voip/package.json @@ -33,11 +33,10 @@ "@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.68.1", - "@rocket.chat/fuselage-hooks": "~0.37.2", - "@rocket.chat/fuselage-polyfills": "~0.31.25", + "@rocket.chat/fuselage": "~0.68.1", + "@rocket.chat/fuselage-hooks": "~0.38.1", "@rocket.chat/fuselage-tokens": "~0.33.2", - "@rocket.chat/icons": "^0.45.0", + "@rocket.chat/icons": "~0.45.0", "@rocket.chat/jest-presets": "workspace:~", "@rocket.chat/mock-providers": "workspace:~", "@rocket.chat/styled": "~0.32.0", diff --git a/packages/web-ui-registration/package.json b/packages/web-ui-registration/package.json index f58440419b6..bd8310354e0 100644 --- a/packages/web-ui-registration/package.json +++ b/packages/web-ui-registration/package.json @@ -24,13 +24,12 @@ "@rocket.chat/core-typings": "workspace:~", "@rocket.chat/css-in-js": "~0.31.25", "@rocket.chat/emitter": "~0.31.25", - "@rocket.chat/fuselage": "^0.68.1", - "@rocket.chat/fuselage-hooks": "~0.37.2", - "@rocket.chat/fuselage-polyfills": "~0.31.25", + "@rocket.chat/fuselage": "~0.68.1", + "@rocket.chat/fuselage-hooks": "~0.38.1", "@rocket.chat/fuselage-tokens": "~0.33.2", "@rocket.chat/i18n": "workspace:~", - "@rocket.chat/icons": "^0.45.0", - "@rocket.chat/layout": "^0.33.1", + "@rocket.chat/icons": "~0.45.0", + "@rocket.chat/layout": "~0.34.0", "@rocket.chat/mock-providers": "workspace:~", "@rocket.chat/rest-typings": "workspace:~", "@rocket.chat/tools": "workspace:~", diff --git a/yarn.lock b/yarn.lock index ef60b63ad81..fcd91d7e521 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4793,13 +4793,6 @@ __metadata: languageName: node linkType: hard -"@juggle/resize-observer@npm:^3.4.0": - version: 3.4.0 - resolution: "@juggle/resize-observer@npm:3.4.0" - checksum: 10/73d1d00ee9132fb6f0aea0531940a6b93603e935590bd450fc6285a328d906102eeeb95dea77b2edac0e779031a9708aa8c82502bd298ee4dd26e7dff48f397a - languageName: node - linkType: hard - "@kaciras/deasync@npm:^1.1.0": version: 1.1.0 resolution: "@kaciras/deasync@npm:1.1.0" @@ -8327,7 +8320,7 @@ __metadata: "@rocket.chat/eslint-config": "workspace:^" "@rocket.chat/federation-sdk": "npm:0.3.0" "@rocket.chat/http-router": "workspace:^" - "@rocket.chat/icons": "npm:^0.45.0" + "@rocket.chat/icons": "npm:~0.45.0" "@rocket.chat/jest-presets": "workspace:~" "@rocket.chat/media-signaling": "workspace:^" "@rocket.chat/message-parser": "workspace:^" @@ -8352,7 +8345,7 @@ __metadata: dependencies: "@rocket.chat/apps-engine": "workspace:^" "@rocket.chat/eslint-config": "workspace:^" - "@rocket.chat/icons": "npm:^0.45.0" + "@rocket.chat/icons": "npm:~0.45.0" "@rocket.chat/message-parser": "workspace:^" "@rocket.chat/ui-kit": "workspace:~" "@types/express": "npm:^4.17.25" @@ -8535,7 +8528,7 @@ __metadata: "@rocket.chat/core-services": "workspace:^" "@rocket.chat/core-typings": "workspace:^" "@rocket.chat/ddp-client": "workspace:^" - "@rocket.chat/emitter": "npm:^0.31.25" + "@rocket.chat/emitter": "npm:~0.31.25" "@rocket.chat/eslint-config": "workspace:^" "@rocket.chat/federation-sdk": "npm:0.3.0" "@rocket.chat/http-router": "workspace:^" @@ -8625,17 +8618,6 @@ __metadata: languageName: node linkType: hard -"@rocket.chat/fuselage-hooks@npm:~0.37.2": - version: 0.37.2 - resolution: "@rocket.chat/fuselage-hooks@npm:0.37.2" - peerDependencies: - "@rocket.chat/emitter": "*" - "@rocket.chat/fuselage-tokens": "*" - react: "*" - checksum: 10/8f9ecf349fc667e4f4cd282fd267402bed9d42e77b206c0966fc0a37bb20b387af4052c0ea15c71c4e4cde285443f9922239a981aab4e23924f7946736e49969 - languageName: node - linkType: hard - "@rocket.chat/fuselage-hooks@npm:~0.38.1": version: 0.38.1 resolution: "@rocket.chat/fuselage-hooks@npm:0.38.1" @@ -8647,21 +8629,7 @@ __metadata: languageName: node linkType: hard -"@rocket.chat/fuselage-polyfills@npm:~0.31.25": - version: 0.31.25 - resolution: "@rocket.chat/fuselage-polyfills@npm:0.31.25" - dependencies: - "@juggle/resize-observer": "npm:^3.4.0" - clipboard-polyfill: "npm:^3.0.3" - element-closest-polyfill: "npm:^1.0.6" - focus-visible: "npm:^5.2.0" - focus-within-polyfill: "npm:^5.2.1" - new-event-polyfill: "npm:^1.0.1" - checksum: 10/e7d42870155d5fbd09536debbaeaa3f788c97854a018e18523c2bfec71bebdaa9594636afe47b8b2347c2cac74a83fcc1f0815478623ad0afa85fc0015254980 - languageName: node - linkType: hard - -"@rocket.chat/fuselage-toastbar@npm:^0.35.1": +"@rocket.chat/fuselage-toastbar@npm:~0.35.1": version: 0.35.1 resolution: "@rocket.chat/fuselage-toastbar@npm:0.35.1" dependencies: @@ -8755,7 +8723,7 @@ __metadata: languageName: unknown linkType: soft -"@rocket.chat/fuselage@npm:^0.68.1, @rocket.chat/fuselage@npm:~0.68.1": +"@rocket.chat/fuselage@npm:~0.68.1": version: 0.68.1 resolution: "@rocket.chat/fuselage@npm:0.68.1" dependencies: @@ -8786,11 +8754,10 @@ __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.68.1" - "@rocket.chat/fuselage-hooks": "npm:~0.37.2" - "@rocket.chat/fuselage-polyfills": "npm:~0.31.25" + "@rocket.chat/fuselage": "npm:~0.68.1" + "@rocket.chat/fuselage-hooks": "npm:~0.38.1" "@rocket.chat/fuselage-tokens": "npm:~0.33.2" - "@rocket.chat/icons": "npm:^0.45.0" + "@rocket.chat/icons": "npm:~0.45.0" "@rocket.chat/jest-presets": "workspace:~" "@rocket.chat/message-parser": "workspace:^" "@rocket.chat/styled": "npm:~0.32.0" @@ -8895,7 +8862,7 @@ __metadata: languageName: unknown linkType: soft -"@rocket.chat/icons@npm:^0.45.0, @rocket.chat/icons@npm:~0.45.0": +"@rocket.chat/icons@npm:~0.45.0": version: 0.45.0 resolution: "@rocket.chat/icons@npm:0.45.0" checksum: 10/9e0967eba17cbef1c482616bb94cf871dfac20e92ac5fad6164cbe60bab95882d9675bf9de2c611928da6d37806a1279d671b0a3463dda0a3148cdade9291147 @@ -8954,15 +8921,15 @@ __metadata: languageName: unknown linkType: soft -"@rocket.chat/layout@npm:^0.33.1": - version: 0.33.1 - resolution: "@rocket.chat/layout@npm:0.33.1" +"@rocket.chat/layout@npm:~0.34.0": + version: 0.34.0 + resolution: "@rocket.chat/layout@npm:0.34.0" peerDependencies: "@rocket.chat/fuselage": "*" react: "*" react-dom: "*" react-i18next: "*" - checksum: 10/cc7d9289669bd045f72b11b0217ea938fa4cc7933a1b3969a2fc0fd7ac2eddc6349ac5e14a2934de4cd3819e03a13d2b3016e860b69aa28e038bc6f196383d5b + checksum: 10/a5520a7be879b687f4938d17a2c585f088011292f46cb42ffdf0c2a38ddff0cdd3bf37a9aa7176c99b6e91122511a7b2c8cc522ef02da38db1be07642153f544 languageName: node linkType: hard @@ -8998,7 +8965,7 @@ __metadata: "@rocket.chat/ddp-client": "workspace:^" "@rocket.chat/emitter": "npm:~0.31.25" "@rocket.chat/eslint-config": "workspace:^" - "@rocket.chat/fuselage-hooks": "npm:~0.37.2" + "@rocket.chat/fuselage-hooks": "npm:~0.38.1" "@rocket.chat/fuselage-tokens": "npm:~0.33.2" "@rocket.chat/gazzodown": "workspace:^" "@rocket.chat/logo": "npm:~0.32.3" @@ -9259,11 +9226,10 @@ __metadata: "@rocket.chat/federation-matrix": "workspace:^" "@rocket.chat/federation-sdk": "npm:0.3.0" "@rocket.chat/freeswitch": "workspace:^" - "@rocket.chat/fuselage": "npm:^0.68.1" + "@rocket.chat/fuselage": "npm:~0.68.1" "@rocket.chat/fuselage-forms": "npm:~0.1.1" - "@rocket.chat/fuselage-hooks": "npm:~0.37.2" - "@rocket.chat/fuselage-polyfills": "npm:~0.31.25" - "@rocket.chat/fuselage-toastbar": "npm:^0.35.1" + "@rocket.chat/fuselage-hooks": "npm:~0.38.1" + "@rocket.chat/fuselage-toastbar": "npm:~0.35.1" "@rocket.chat/fuselage-tokens": "npm:~0.33.2" "@rocket.chat/fuselage-ui-kit": "workspace:^" "@rocket.chat/gazzodown": "workspace:^" @@ -9273,7 +9239,7 @@ __metadata: "@rocket.chat/instance-status": "workspace:^" "@rocket.chat/jest-presets": "workspace:~" "@rocket.chat/jwt": "workspace:^" - "@rocket.chat/layout": "npm:^0.33.1" + "@rocket.chat/layout": "npm:~0.34.0" "@rocket.chat/license": "workspace:^" "@rocket.chat/livechat": "workspace:^" "@rocket.chat/log-format": "workspace:^" @@ -9293,7 +9259,7 @@ __metadata: "@rocket.chat/omni-core": "workspace:^" "@rocket.chat/omni-core-ee": "workspace:^" "@rocket.chat/omnichannel-services": "workspace:^" - "@rocket.chat/onboarding-ui": "npm:^0.35.2" + "@rocket.chat/onboarding-ui": "npm:~0.36.0" "@rocket.chat/password-policies": "workspace:^" "@rocket.chat/patch-injection": "workspace:^" "@rocket.chat/pdf-worker": "workspace:^" @@ -9847,16 +9813,15 @@ __metadata: languageName: unknown linkType: soft -"@rocket.chat/onboarding-ui@npm:^0.35.2": - version: 0.35.2 - resolution: "@rocket.chat/onboarding-ui@npm:0.35.2" +"@rocket.chat/onboarding-ui@npm:~0.36.0": + version: 0.36.0 + resolution: "@rocket.chat/onboarding-ui@npm:0.36.0" dependencies: i18next: "npm:~23.4.9" react-hook-form: "npm:~7.54.2" peerDependencies: "@rocket.chat/fuselage": "*" "@rocket.chat/fuselage-hooks": "*" - "@rocket.chat/fuselage-polyfills": "*" "@rocket.chat/icons": "*" "@rocket.chat/layout": "*" "@rocket.chat/logo": "*" @@ -9864,7 +9829,7 @@ __metadata: react: "*" react-dom: "*" react-i18next: "*" - checksum: 10/357146bb9d6d39fbc55279214c9801ad780461d671bea72b98056afb87cd184bc2f609a99d1e2794bb77f4babda33ba1f59af1f3d47a40d0f71f89c5d25e2cc6 + checksum: 10/5915bc45f88869106d556be599431a62a3ad37e956140368a4ff1eef7409659009aeca777a7d8bdb2cc071f27411521c5bfa7dacae6cc68f23e39a2a238f522a languageName: node linkType: hard @@ -10180,11 +10145,10 @@ __metadata: dependencies: "@rocket.chat/emitter": "npm:~0.31.25" "@rocket.chat/eslint-config": "workspace:~" - "@rocket.chat/fuselage": "npm:^0.68.1" - "@rocket.chat/fuselage-hooks": "npm:~0.37.2" - "@rocket.chat/fuselage-polyfills": "npm:~0.31.25" + "@rocket.chat/fuselage": "npm:~0.68.1" + "@rocket.chat/fuselage-hooks": "npm:~0.38.1" "@rocket.chat/fuselage-tokens": "npm:~0.33.2" - "@rocket.chat/icons": "npm:^0.45.0" + "@rocket.chat/icons": "npm:~0.45.0" "@rocket.chat/tsconfig": "workspace:*" "@storybook/addon-a11y": "npm:^8.6.14" "@storybook/addon-essentials": "npm:^8.6.14" @@ -10316,11 +10280,10 @@ __metadata: "@babel/core": "npm:~7.28.5" "@rocket.chat/core-typings": "workspace:~" "@rocket.chat/emitter": "npm:~0.31.25" - "@rocket.chat/fuselage": "npm:^0.68.1" - "@rocket.chat/fuselage-hooks": "npm:~0.37.2" - "@rocket.chat/fuselage-polyfills": "npm:~0.31.25" + "@rocket.chat/fuselage": "npm:~0.68.1" + "@rocket.chat/fuselage-hooks": "npm:~0.38.1" "@rocket.chat/fuselage-tokens": "npm:~0.33.2" - "@rocket.chat/icons": "npm:^0.45.0" + "@rocket.chat/icons": "npm:~0.45.0" "@rocket.chat/ui-contexts": "workspace:^" "@types/react": "npm:~18.3.26" "@types/react-dom": "npm:~18.3.7" @@ -10349,11 +10312,10 @@ __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.68.1" - "@rocket.chat/fuselage-hooks": "npm:~0.37.2" - "@rocket.chat/fuselage-polyfills": "npm:~0.31.25" + "@rocket.chat/fuselage": "npm:~0.68.1" + "@rocket.chat/fuselage-hooks": "npm:~0.38.1" "@rocket.chat/fuselage-tokens": "npm:~0.33.2" - "@rocket.chat/icons": "npm:^0.45.0" + "@rocket.chat/icons": "npm:~0.45.0" "@rocket.chat/jest-presets": "workspace:~" "@rocket.chat/mock-providers": "workspace:^" "@rocket.chat/storybook-config": "workspace:~" @@ -10403,11 +10365,10 @@ __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.68.1" - "@rocket.chat/fuselage-hooks": "npm:~0.37.2" - "@rocket.chat/fuselage-polyfills": "npm:~0.31.25" + "@rocket.chat/fuselage": "npm:~0.68.1" + "@rocket.chat/fuselage-hooks": "npm:~0.38.1" "@rocket.chat/fuselage-tokens": "npm:~0.33.2" - "@rocket.chat/icons": "npm:^0.45.0" + "@rocket.chat/icons": "npm:~0.45.0" "@rocket.chat/jest-presets": "workspace:~" "@rocket.chat/tsconfig": "workspace:*" "@storybook/addon-a11y": "npm:^8.6.14" @@ -10448,7 +10409,7 @@ __metadata: "@rocket.chat/core-typings": "workspace:^" "@rocket.chat/ddp-client": "workspace:~" "@rocket.chat/emitter": "npm:~0.31.25" - "@rocket.chat/fuselage-hooks": "npm:~0.37.2" + "@rocket.chat/fuselage-hooks": "npm:~0.38.1" "@rocket.chat/fuselage-tokens": "npm:~0.33.2" "@rocket.chat/i18n": "workspace:~" "@rocket.chat/jest-presets": "workspace:~" @@ -10485,7 +10446,7 @@ __metadata: "@babel/plugin-transform-runtime": "npm:~7.28.5" "@babel/preset-env": "npm:~7.28.5" "@rocket.chat/eslint-config": "workspace:~" - "@rocket.chat/icons": "npm:^0.45.0" + "@rocket.chat/icons": "npm:~0.45.0" "@rocket.chat/jest-presets": "workspace:~" "@rocket.chat/tsconfig": "workspace:*" "@types/jest": "npm:~30.0.0" @@ -10509,11 +10470,10 @@ __metadata: dependencies: "@rocket.chat/css-in-js": "npm:~0.31.25" "@rocket.chat/emitter": "npm:~0.31.25" - "@rocket.chat/fuselage": "npm:^0.68.1" - "@rocket.chat/fuselage-hooks": "npm:~0.37.2" - "@rocket.chat/fuselage-polyfills": "npm:~0.31.25" + "@rocket.chat/fuselage": "npm:~0.68.1" + "@rocket.chat/fuselage-hooks": "npm:~0.38.1" "@rocket.chat/fuselage-tokens": "npm:~0.33.2" - "@rocket.chat/icons": "npm:^0.45.0" + "@rocket.chat/icons": "npm:~0.45.0" "@rocket.chat/ui-contexts": "workspace:~" "@types/react": "npm:~18.3.26" "@types/react-dom": "npm:~18.3.7" @@ -10545,11 +10505,10 @@ __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.68.1" - "@rocket.chat/fuselage-hooks": "npm:~0.37.2" - "@rocket.chat/fuselage-polyfills": "npm:~0.31.25" + "@rocket.chat/fuselage": "npm:~0.68.1" + "@rocket.chat/fuselage-hooks": "npm:~0.38.1" "@rocket.chat/fuselage-tokens": "npm:~0.33.2" - "@rocket.chat/icons": "npm:^0.45.0" + "@rocket.chat/icons": "npm:~0.45.0" "@rocket.chat/jest-presets": "workspace:~" "@rocket.chat/styled": "npm:~0.32.0" "@rocket.chat/tsconfig": "workspace:*" @@ -10604,11 +10563,10 @@ __metadata: "@rocket.chat/desktop-api": "workspace:^" "@rocket.chat/emitter": "npm:~0.31.25" "@rocket.chat/eslint-config": "workspace:^" - "@rocket.chat/fuselage": "npm:^0.68.1" - "@rocket.chat/fuselage-hooks": "npm:~0.37.2" - "@rocket.chat/fuselage-polyfills": "npm:~0.31.25" + "@rocket.chat/fuselage": "npm:~0.68.1" + "@rocket.chat/fuselage-hooks": "npm:~0.38.1" "@rocket.chat/fuselage-tokens": "npm:~0.33.2" - "@rocket.chat/icons": "npm:^0.45.0" + "@rocket.chat/icons": "npm:~0.45.0" "@rocket.chat/jest-presets": "workspace:~" "@rocket.chat/media-signaling": "workspace:~" "@rocket.chat/mock-providers": "workspace:~" @@ -10675,13 +10633,12 @@ __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.68.1" - "@rocket.chat/fuselage-hooks": "npm:~0.37.2" - "@rocket.chat/fuselage-polyfills": "npm:~0.31.25" - "@rocket.chat/fuselage-toastbar": "npm:^0.35.1" + "@rocket.chat/fuselage": "npm:~0.68.1" + "@rocket.chat/fuselage-hooks": "npm:~0.38.1" + "@rocket.chat/fuselage-toastbar": "npm:~0.35.1" "@rocket.chat/fuselage-tokens": "npm:~0.33.2" "@rocket.chat/fuselage-ui-kit": "workspace:~" - "@rocket.chat/icons": "npm:^0.45.0" + "@rocket.chat/icons": "npm:~0.45.0" "@rocket.chat/logo": "npm:~0.32.3" "@rocket.chat/styled": "npm:~0.32.0" "@rocket.chat/tsconfig": "workspace:*" @@ -10725,13 +10682,12 @@ __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.68.1" - "@rocket.chat/fuselage-hooks": "npm:~0.37.2" - "@rocket.chat/fuselage-polyfills": "npm:~0.31.25" + "@rocket.chat/fuselage": "npm:~0.68.1" + "@rocket.chat/fuselage-hooks": "npm:~0.38.1" "@rocket.chat/fuselage-tokens": "npm:~0.33.2" "@rocket.chat/i18n": "workspace:~" - "@rocket.chat/icons": "npm:^0.45.0" - "@rocket.chat/layout": "npm:^0.33.1" + "@rocket.chat/icons": "npm:~0.45.0" + "@rocket.chat/layout": "npm:~0.34.0" "@rocket.chat/mock-providers": "workspace:~" "@rocket.chat/rest-typings": "workspace:~" "@rocket.chat/tools": "workspace:~" @@ -18086,13 +18042,6 @@ __metadata: languageName: node linkType: hard -"clipboard-polyfill@npm:^3.0.3": - version: 3.0.3 - resolution: "clipboard-polyfill@npm:3.0.3" - checksum: 10/852f136ef4bb2ce31683c5e1f8f08b49fc2e86145ebb0f10e7a45b59750324c4af1fba7c4e9ed0e156130399da84dbdfbdf813d8ef46332334757faca46ee0e9 - languageName: node - linkType: hard - "cliui@npm:^6.0.0": version: 6.0.0 resolution: "cliui@npm:6.0.0" @@ -20344,13 +20293,6 @@ __metadata: languageName: node linkType: hard -"element-closest-polyfill@npm:^1.0.6": - version: 1.0.6 - resolution: "element-closest-polyfill@npm:1.0.6" - checksum: 10/f47d6fec1a2962e35b4dd63fa6cc7d3bad7abb270305345ff98ffa0a997f844589ee9e57c268a3277295dce74dcd70775e059dc1475323b4655b7e3d2f9534c3 - languageName: node - linkType: hard - "elliptic@npm:^6.5.3, elliptic@npm:^6.5.5": version: 6.6.0 resolution: "elliptic@npm:6.6.0" @@ -22345,20 +22287,6 @@ __metadata: languageName: node linkType: hard -"focus-visible@npm:^5.2.0": - version: 5.2.0 - resolution: "focus-visible@npm:5.2.0" - checksum: 10/11f686d68dbd4a0efb6714f037a4611411ffb8db4369784fcd6ba7f6cc386a42a5fa08211f6feb14ad3660719b451d0621f95058ea49963a59cf204ced38c4bc - languageName: node - linkType: hard - -"focus-within-polyfill@npm:^5.2.1": - version: 5.2.1 - resolution: "focus-within-polyfill@npm:5.2.1" - checksum: 10/fe7ce8715791b7778134e23a01ece66e52078b0a88285322b97079b345fe5ee30376680e07914721a23d1abcfd03e947931e69c561a27a50c642cbaa403a34fd - languageName: node - linkType: hard - "follow-redirects@npm:^1.0.0, follow-redirects@npm:^1.15.4, follow-redirects@npm:^1.15.6, follow-redirects@npm:^1.15.9": version: 1.15.9 resolution: "follow-redirects@npm:1.15.9" @@ -28588,13 +28516,6 @@ __metadata: languageName: node linkType: hard -"new-event-polyfill@npm:^1.0.1": - version: 1.0.1 - resolution: "new-event-polyfill@npm:1.0.1" - checksum: 10/4c58d2b0505132b2b75d47d82e6ce4f11839f9fa13f89c22bc9cbfe6a60e18df6046b86da5bc8699dae3077beb3a9e503e76bc56a797b76379db07b44bb6952c - languageName: node - linkType: hard - "nise@npm:^6.1.1": version: 6.1.1 resolution: "nise@npm:6.1.1" @@ -32903,7 +32824,7 @@ __metadata: "@rocket.chat/core-services": "workspace:^" "@rocket.chat/core-typings": "workspace:^" "@rocket.chat/emitter": "npm:~0.31.25" - "@rocket.chat/icons": "npm:^0.45.0" + "@rocket.chat/icons": "npm:~0.45.0" "@rocket.chat/message-parser": "workspace:^" "@rocket.chat/model-typings": "workspace:^" "@rocket.chat/models": "workspace:^"