Moving select-tree component to a new package called ohif:select-tree
This commit is contained in:
parent
749c863183
commit
1b4a2f9051
@ -30,6 +30,7 @@ ohif:design
|
||||
ohif:core
|
||||
ohif:user
|
||||
ohif:header
|
||||
ohif:select-tree
|
||||
ohif:cornerstone
|
||||
ohif:viewerbase
|
||||
ohif:study-list
|
||||
|
||||
@ -97,6 +97,7 @@ ohif:lesiontracker@0.0.1
|
||||
ohif:log@0.0.1
|
||||
ohif:measurements@0.0.1
|
||||
ohif:metadata@0.0.1
|
||||
ohif:select-tree@0.0.1
|
||||
ohif:study-list@0.0.1
|
||||
ohif:themes@0.0.1
|
||||
ohif:themes-common@0.0.1
|
||||
|
||||
@ -1,5 +1,3 @@
|
||||
import './selectTree';
|
||||
|
||||
import './measureFlow.html';
|
||||
import './measureFlow.styl';
|
||||
import './measureFlow.js';
|
||||
|
||||
@ -1,7 +0,0 @@
|
||||
import './mixin.js';
|
||||
|
||||
import './selectTree.html';
|
||||
import './selectTree.styl';
|
||||
import './selectTree.js';
|
||||
import './selectTreeCommon.html';
|
||||
import './selectTreeCommon.js';
|
||||
@ -33,6 +33,7 @@ Package.onUse(function(api) {
|
||||
api.use('ohif:cornerstone');
|
||||
api.use('ohif:design');
|
||||
api.use('ohif:core');
|
||||
api.use('ohif:select-tree');
|
||||
api.use('ohif:log');
|
||||
api.use('ohif:study-list');
|
||||
api.use('ohif:hanging-protocols');
|
||||
|
||||
8
Packages/ohif-select-tree/client/components/index.js
Normal file
8
Packages/ohif-select-tree/client/components/index.js
Normal file
@ -0,0 +1,8 @@
|
||||
// selectTree
|
||||
import './selectTree/selectTree.html';
|
||||
import './selectTree/selectTree.styl';
|
||||
import './selectTree/selectTree.js';
|
||||
|
||||
// selectTreeCommon
|
||||
import './selectTreeCommon/selectTreeCommon.html';
|
||||
import './selectTreeCommon/selectTreeCommon.js';
|
||||
2
Packages/ohif-select-tree/client/index.js
Normal file
2
Packages/ohif-select-tree/client/index.js
Normal file
@ -0,0 +1,2 @@
|
||||
import './mixin';
|
||||
import './components';
|
||||
26
Packages/ohif-select-tree/package.js
Normal file
26
Packages/ohif-select-tree/package.js
Normal file
@ -0,0 +1,26 @@
|
||||
Package.describe({
|
||||
name: 'ohif:select-tree',
|
||||
summary: 'OHIF Select Tree component',
|
||||
version: '0.0.1'
|
||||
});
|
||||
|
||||
Package.onUse(function(api) {
|
||||
api.versionsFrom('1.4');
|
||||
|
||||
// Meteor packages
|
||||
api.use([
|
||||
'ecmascript',
|
||||
'templating',
|
||||
'stylus',
|
||||
'tracker',
|
||||
'reactive-var',
|
||||
'underscore',
|
||||
'jquery'
|
||||
]);
|
||||
|
||||
// OHIF dependencies
|
||||
api.use('ohif:core');
|
||||
|
||||
// Client imports
|
||||
api.addFiles('client/index.js', 'client');
|
||||
});
|
||||
Loading…
Reference in New Issue
Block a user