fix: Added missing export for LayoutSelector in ui-next (#5040)

This commit is contained in:
Celian-abd 2025-05-13 17:24:25 +02:00 committed by GitHub
parent 4a91dfdfa5
commit da51e6e3c1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View File

@ -3,7 +3,7 @@ import React, { useCallback } from 'react';
import PropTypes from 'prop-types';
import { CommandsManager } from '@ohif/core';
import { LayoutSelector } from '../../../../platform/ui-next/src/components/LayoutSelector';
import { LayoutSelector } from '@ohif/ui-next';
function ToolbarLayoutSelectorWithServices({
commandsManager,

View File

@ -117,6 +117,7 @@ import {
ToolButtonListItem,
ToolButtonListDivider,
} from './ToolButton';
import { LayoutSelector } from './LayoutSelector';
import { ToolSettings } from './OHIFToolSettings';
export { DataRow } from './DataRow';
export { MeasurementTable } from './MeasurementTable';
@ -268,4 +269,5 @@ export {
ProgressLoadingBar,
ViewportDialog,
CinePlayer,
LayoutSelector
};