index.js 394 B

123456789101112131415
  1. import AutoPlaceModule from '../auto-place';
  2. import ComplexPreviewModule from 'diagram-js/lib/features/complex-preview';
  3. import ModelingModule from '../modeling';
  4. import AppendPreview from './AppendPreview';
  5. export default {
  6. __depends__: [
  7. AutoPlaceModule,
  8. ComplexPreviewModule,
  9. ModelingModule
  10. ],
  11. __init__: [ 'appendPreview' ],
  12. appendPreview: [ 'type', AppendPreview ]
  13. };