* ohif-323: add cineplayer flow * ohif-323: improve toolbar flow of cine * ohif-323: improve cine styles * ohif-323: use toggle instead of set * ohif-323: add compatibility comment * ohif-323: move cine logic to command * ohif-323: cr update * ohif-323: remove typo and update svg title * ohif-323: remove log * ohif-323: update props and remove dead code Co-authored-by: Danny Brown <danny.ri.brown@gmail.com>
25 lines
811 B
JavaScript
25 lines
811 B
JavaScript
import getContextModule from './getContextModule.js';
|
|
import getDataSourcesModule from './getDataSourcesModule.js';
|
|
import getLayoutTemplateModule from './getLayoutTemplateModule.js';
|
|
import getPanelModule from './getPanelModule.js';
|
|
import getSopClassHandlerModule from './getSopClassHandlerModule.js';
|
|
import getToolbarModule from './getToolbarModule.js';
|
|
import commandsModule from './commandsModule';
|
|
import id from './id';
|
|
|
|
export default {
|
|
/**
|
|
* Only required property. Should be a unique value across all extensions.
|
|
*/
|
|
id,
|
|
getContextModule,
|
|
getDataSourcesModule,
|
|
getLayoutTemplateModule,
|
|
getPanelModule,
|
|
getSopClassHandlerModule,
|
|
getToolbarModule,
|
|
getCommandsModule({ servicesManager, commandsManager }) {
|
|
return commandsModule({ servicesManager, commandsManager });
|
|
},
|
|
};
|