Moving select-tree component to a new package called ohif:select-tree

This commit is contained in:
Bruno Alves de Faria 2017-03-30 15:34:18 -03:00
parent 749c863183
commit 1b4a2f9051
14 changed files with 39 additions and 9 deletions

View File

@ -30,6 +30,7 @@ ohif:design
ohif:core
ohif:user
ohif:header
ohif:select-tree
ohif:cornerstone
ohif:viewerbase
ohif:study-list

View File

@ -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

View File

@ -1,5 +1,3 @@
import './selectTree';
import './measureFlow.html';
import './measureFlow.styl';
import './measureFlow.js';

View File

@ -1,7 +0,0 @@
import './mixin.js';
import './selectTree.html';
import './selectTree.styl';
import './selectTree.js';
import './selectTreeCommon.html';
import './selectTreeCommon.js';

View File

@ -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');

View 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';

View File

@ -0,0 +1,2 @@
import './mixin';
import './components';

View 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');
});